diff --git a/.env.example b/.env.example index c61ceba1e8..d2ae90f474 100644 --- a/.env.example +++ b/.env.example @@ -1,13 +1,24 @@ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY="7(2w1sedok=aznpq)ta1mc4i%4h=xx@hxwx*o57ctsuml0x%fr" +# SECRET_KEY="7(2w1sedok=aznpq)ta1mc4i%4h=xx@hxwx*o57ctsuml0x%fr" # SECURITY WARNING: don't run with debug turned on in production! DEBUG=false -USE_HTTPS=true - +# Your domain ("example.com"). If running development on localhost, set this to localhost DOMAIN=your.domain.here +# This is the email address registered by certbot when you set up https in production EMAIL=your@email.here +# If you use letsencrypt and get https directly to nginx, use https mode, + +# if you have something in front of nginx, like traefik/ngrok/apache that handles certificates and +# you want to pass just http to nginx, use reverse_proxy mode. +# For local development, use 'reverse_proxy' config to allow testing/development without an ssl certificate. +# +# If NGINX_SETUP is not defined, we default to https mode +# +# docker compose NGINX setup: https, reverse_proxy +NGINX_SETUP=https + # Instance default language (see options at bookwyrm/settings.py "LANGUAGES" LANGUAGE_CODE="en-us" # Used for deciding which editions to prefer @@ -16,16 +27,17 @@ DEFAULT_LANGUAGE="English" ## Leave unset to allow all hosts # ALLOWED_HOSTS="localhost,127.0.0.1,[::1]" -# Specify when the site is served from a port that is not the default -# for the protocol (80 for HTTP or 443 for HTTPS). -# Probably only necessary in development. +# Specifying PORT is only necessary in reverse_proxy mode. +# By default PORT is 443 unless you are using localhost for development work. +# If developing with localhost you do not need to set a port and it defaults to 80. # PORT=1333 +STATIC_ROOT=static/ MEDIA_ROOT=images/ # Database configuration PGPORT=5432 -POSTGRES_PASSWORD=securedbypassword123 +# POSTGRES_PASSWORD=securedbypassword123 POSTGRES_USER=bookwyrm POSTGRES_DB=bookwyrm POSTGRES_HOST=db @@ -34,7 +46,7 @@ POSTGRES_HOST=db MAX_STREAM_LENGTH=200 REDIS_ACTIVITY_HOST=redis_activity REDIS_ACTIVITY_PORT=6379 -REDIS_ACTIVITY_PASSWORD=redispassword345 +# REDIS_ACTIVITY_PASSWORD=redispassword345 # Optional, use a different redis database (defaults to 0) # REDIS_ACTIVITY_DB_INDEX=0 # Alternatively specify the full redis url, i.e. if you need to use a unix:// socket @@ -43,7 +55,7 @@ REDIS_ACTIVITY_PASSWORD=redispassword345 # Redis as celery broker REDIS_BROKER_HOST=redis_broker REDIS_BROKER_PORT=6379 -REDIS_BROKER_PASSWORD=redispassword123 +# REDIS_BROKER_PASSWORD=redispassword123 # Optional, use a different redis database (defaults to 0) # REDIS_BROKER_DB_INDEX=0 # Alternatively specify the full redis url, i.e. if you need to use a unix:// socket @@ -52,7 +64,7 @@ REDIS_BROKER_PASSWORD=redispassword123 # Monitoring for celery FLOWER_PORT=8888 FLOWER_USER=admin -FLOWER_PASSWORD=changeme +# FLOWER_PASSWORD=changeme # Email config EMAIL_HOST=smtp.mailgun.org @@ -92,6 +104,9 @@ S3_SIGNED_URL_EXPIRY=900 # AWS_S3_URL_PROTOCOL=None # "http:" # AWS_S3_REGION_NAME=None # "fr-par" # AWS_S3_ENDPOINT_URL=None # "https://s3.fr-par.scw.cloud" +# AWS_DEFAULT_ACL="" # AWS_DEFAULT_ACL defaults to public-read, however, not all providers, e.g. BackBlaze, support it. + # Uncomment and set this value to an empty string (for Back Blaze) or whatever is required by your provider to override it. + # Commented are example values if you use Azure Blob Storage # USE_AZURE=true @@ -131,13 +146,6 @@ OTEL_EXPORTER_OTLP_HEADERS= # Service name to identify your app OTEL_SERVICE_NAME= -# Set HTTP_X_FORWARDED_PROTO ONLY to true if you know what you are doing. -# Only use it if your proxy is "swallowing" if the original request was made -# via https. Please refer to the Django-Documentation and assess the risks -# for your instance: -# https://docs.djangoproject.com/en/3.2/ref/settings/#secure-proxy-ssl-header -HTTP_X_FORWARDED_PROTO=false - # TOTP settings # TWO_FACTOR_LOGIN_VALIDITY_WINDOW sets the number of codes either side # which will be accepted. @@ -150,7 +158,7 @@ TWO_FACTOR_LOGIN_MAX_SECONDS=60 CSP_ADDITIONAL_HOSTS= # Time before being logged out (in seconds) -# SESSION_COOKIE_AGE=2592000 # current default: 30 days +# SESSION_COOKIE_AGE=31536000 # current default: 365 days # Maximum allowed memory for file uploads (increase if users are having trouble # uploading BookWyrm export files). diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 99c92478db..570174248a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,10 +1,5 @@ - -## Are you finished? - -### Linters +## Description -- [ ] I have checked my code with `black`, `pylint`, and `mypy`, or `./bw-dev formatters` -### Tests - + + +- Related Issue # +- Closes # ## What type of Pull Request is this? @@ -48,21 +42,6 @@ If you miss this step it is likely that the GitHub task runners will fail. ### Details of breaking or configuration changes (if any of above checked) -## Description - - - -- Related Issue # -- Closes # ## Documentation + +### Tests + + +- [ ] My changes do not need new tests +- [ ] All tests I have added are passing +- [ ] I have written tests but need help to make them pass +- [ ] I have not written tests and need help to write them diff --git a/.github/workflows/lint-frontend.yaml b/.github/workflows/lint-frontend.yaml index b0322f371e..68142b9467 100644 --- a/.github/workflows/lint-frontend.yaml +++ b/.github/workflows/lint-frontend.yaml @@ -15,7 +15,7 @@ on: jobs: lint: name: Lint with stylelint and ESLint. - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it. diff --git a/.github/workflows/prettier.yaml b/.github/workflows/prettier.yaml index 9c05c7476b..df56cafb00 100644 --- a/.github/workflows/prettier.yaml +++ b/.github/workflows/prettier.yaml @@ -10,7 +10,7 @@ on: jobs: lint: name: Lint with Prettier - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it. diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 01241b467d..baa4f3a22b 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest services: postgres: - image: postgres:13 + image: postgres:17 env: # does not inherit from jobs.build.env POSTGRES_USER: postgres POSTGRES_PASSWORD: hunter2 @@ -48,7 +48,7 @@ jobs: - name: Set up .env run: cp .env.example .env - name: Check migrations up-to-date - run: python ./manage.py makemigrations --check + run: python ./manage.py makemigrations --check -v 3 - name: Run Tests run: pytest -n 3 diff --git a/.gitignore b/.gitignore index fd6cc7547c..e6ba03f7cb 100644 --- a/.gitignore +++ b/.gitignore @@ -39,5 +39,8 @@ nginx/default.conf #macOS **/.DS_Store +#QTS (system in QNAP NAS) +**/.@__thumb/ + # Docker docker-compose.override.yml diff --git a/.pylintrc b/.pylintrc index 464638853e..e89f7d5363 100644 --- a/.pylintrc +++ b/.pylintrc @@ -3,7 +3,19 @@ ignore=migrations load-plugins=pylint.extensions.no_self_use [MESSAGES CONTROL] -disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801,C3001,import-error +disable = + cyclic-import, + duplicate-code, + fixme, + no-member, + raise-missing-from, + too-few-public-methods, + too-many-ancestors, + too-many-instance-attributes, + unnecessary-lambda-assignment, + unsubscriptable-object, +enable = + useless-suppression [FORMAT] max-line-length=88 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..21164970fb --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,53 @@ +# Contributing to BookWyrm + +Our goal is to make BookWyrm a kind and welcoming place where everyone can contribute to the success of the project. Here are some ways you can join the project: + +## Report things that are confusing + +We want BookWyrm to be a fun experience that is intuitive to understand. If you're confused by something, it's probably because it is confusing! We are always keen to improve our [documentation](https://docs.joinbookwyrm.com) and Guided Tour as well as the platform itself. + +You can [create an issue to improve our documentation](https://github.com/bookwyrm-social/documentation/issues) or if you prefer, [ask for help in our Matrix chat room](https://app.element.io/#/room/#bookwyrm:matrix.org). + +## Report bugs + +Sometimes things don't work the way we intended. We would love to have fewer bugs, but we can only fix them if we know about them. + +You can [report bugs](https://github.com/bookwyrm-social/bookwyrm/issues) by clicking "New Issue". The more information you can provide, the easier it will be to understand the problem and squash that bug! + +It's a good idea to search the Issues for key words associated with your bug first because someone else may have already reported it. + +## Request and discuss new features + +Got a great idea for an improvement to BookWyrm? You can [request new features](https://github.com/bookwyrm-social/bookwyrm/issues) by clicking "New Issue". + +It's a good idea to search the Issues for key words associated with your feature suggestion first because someone else may have already requested it. + +## Translate BookWyrm into international languages + +Books are written in many languages, and BookWyrm should be too. If you know more than one language, you might be able to help us to [translate BookWyrm](https://translate.joinbookwyrm.com/). You can find out more about translation [in the documentation](https://docs.joinbookwyrm.com/translation.html). + +## Keep the documentation up to date + +Good documentation is crucial so that people know how to use, contribute to, and administer BookWyrm. No matter how you are involved with BookWyrm, your perspective is valuable and you can contribute to our documentation. + +We managed documentation in [a separate GitHub repository](https://github.com/bookwyrm-social/documentation) where you can [log a documentation issue](https://github.com/bookwyrm-social/documentation/issues) or contribute to the documentation yourself. + +## Test draft versions + +Are you a BookWyrm instance administrator? You can help to test new features when we release them in a draft version of BookWyrm, and report back on your experiences. This is crucial to helping us to release stable versions with fewer bugs. + +## Contribute code + +If you're able to write code, you can contribute that way! Check out the [Guide to the developer environment](https://docs.joinbookwyrm.com/install-dev.html) and our code [style guide](https://docs.joinbookwyrm.com/style_guide.html). + +## Provide expert advice + +Bibliographic metadata wizard? Celery nerd? ActivityPub expert? SQL query obsessive? We need all kinds of expertise! You can contribute to discussions in [the Issues](https://github.com/bookwyrm-social/bookwyrm/issues) or reach out to make suggestions [in our Matrix chat room](https://app.element.io/#/room/#bookwyrm:matrix.org) or via an Issue of your own. + +## More information + +You can find out more about BookWyrm and contributing at [JoinBookWyrm.com](https://joinbookwyrm.com/get-involved/). + +Ensure you are aware of and agree to our [Code of Conduct](https://github.com/bookwyrm-social/bookwyrm/blob/main/CODE_OF_CONDUCT.md). + +Please note that the BookWyrm project is licensed under the [Anti-capitalist Software License](https://github.com/bookwyrm-social/bookwyrm/blob/main/LICENSE.md). \ No newline at end of file diff --git a/FEDERATION.md b/FEDERATION.md index d80e98bd3c..5b82b958d2 100644 --- a/FEDERATION.md +++ b/FEDERATION.md @@ -321,6 +321,8 @@ Bookwyrm uses the [Webfinger](https://datatracker.ietf.org/doc/html/rfc7033) sta Bookwyrm uses and requires HTTP signatures for all `POST` requests. `GET` requests are not signed by default, but if Bookwyrm receives a `403` response to a `GET` it will re-send the request, signed by the default server user. This usually will have a user id of `https://example.net/user/bookwyrm.instance.actor` +As of the first version to be released in 2025, all `GET` requests will be signed by the instance user instead of re-sending requests that are rejected. + #### publicKey id In older versions of Bookwyrm the `publicKey.id` was incorrectly listed in request headers as `https://example.net/user/username#main-key`. As of v0.6.3 the id is now listed correctly, as `https://example.net/user/username/#main-key`. In most ActivityPub implementations this will make no difference as the URL will usually resolve to the same place. diff --git a/README.md b/README.md index 7e27d44e66..0322308821 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ BookWyrm is built on [ActivityPub](http://activitypub.rocks/). With ActivityPub, Federation makes it possible to have small, self-determining communities, in contrast to the monolithic service you find on GoodReads or Twitter. An instance can be focused on a particular interest, be just for a group of friends, or anything else that brings people together. Each community can choose which other instances they want to federate with, and moderate and run their community autonomously. Check out https://runyourown.social/ to get a sense of the philosophy and logistics behind small, high-trust social networks. +Developers of other ActivityPub software can find out more about BookWyrm's implementation at [`FEDERATION.md`](https://github.com/bookwyrm-social/bookwyrm/blob/main/FEDERATION.md). + ## Features ### Post about books @@ -61,3 +63,7 @@ Deployment ## Set up BookWyrm The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up BookWyrm in a [developer environment](https://docs.joinbookwyrm.com/install-dev.html) or [production](https://docs.joinbookwyrm.com/install-prod.html). + +## Contributing + +There are many ways you can contribute to the success and health of the BookWyrm project! You do not have to know how to write code and we are always keen to see more people get involved. Find out how you can join the project at [CONTRIBUTING.md](https://github.com/bookwyrm-social/bookwyrm/blob/main/CONTRIBUTING.md) \ No newline at end of file diff --git a/VERSION b/VERSION index 0a1ffad4b4..8adc70fdd9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.4 +0.8.0 \ No newline at end of file diff --git a/bookwyrm/activitypub/base_activity.py b/bookwyrm/activitypub/base_activity.py index dc4b8f6ae1..2a52d99f03 100644 --- a/bookwyrm/activitypub/base_activity.py +++ b/bookwyrm/activitypub/base_activity.py @@ -120,6 +120,7 @@ def to_model( save: bool = True, overwrite: bool = True, allow_external_connections: bool = True, + trigger=None, ) -> Optional[TBookWyrmModel]: """convert from an activity to a model instance. Args: model: the django model that this object is being converted to @@ -133,6 +134,9 @@ def to_model( only update blank fields if false allow_external_connections: look up missing data if true, throw an exception if false and an external connection is needed + trigger: the object that originally triggered this + self.to_model. e.g. if this is a Work being dereferenced from + an incoming Edition """ model = model or get_model_from_type(self.type) @@ -223,6 +227,8 @@ def to_model( related_field_name = model_field.field.name for item in values: + if trigger and item == trigger.remote_id: + continue set_related_field.delay( related_model.__name__, instance.__class__.__name__, @@ -369,17 +375,24 @@ def resolve_remote_id( # load the data and create the object try: - data = get_data(remote_id) + data = get_activitypub_data(remote_id) except ConnectionError: logger.info("Could not connect to host for remote_id: %s", remote_id) return None except requests.HTTPError as e: - if (e.response is not None) and e.response.status_code == 401: - # This most likely means it's a mastodon with secure fetch enabled. - data = get_activitypub_data(remote_id) + if ( + hasattr(e, "response") + and hasattr(e.response, "status_code") + and e.response.status_code == 410 + ): + # only log a warning for "gone" since there is not much we can do + logger.warning( + "request for object dropped because it is gone (410) - remote_id: %s", + remote_id, + ) else: - logger.info("Could not connect to host for remote_id: %s", remote_id) - return None + logger.exception("HTTP error - remote_id: %s - error: %s", remote_id, e) + return None # determine the model implicitly, if not provided # or if it's a model with subclasses like Status, check again if not model or hasattr(model.objects, "select_subclasses"): diff --git a/bookwyrm/activitypub/book.py b/bookwyrm/activitypub/book.py index a53222053c..33c327d0fe 100644 --- a/bookwyrm/activitypub/book.py +++ b/bookwyrm/activitypub/book.py @@ -13,6 +13,7 @@ class BookData(ActivityObject): openlibraryKey: Optional[str] = None inventaireId: Optional[str] = None + finnaKey: Optional[str] = None librarythingKey: Optional[str] = None goodreadsKey: Optional[str] = None bnfId: Optional[str] = None @@ -67,7 +68,6 @@ class Edition(Book): type: str = "Edition" -# pylint: disable=invalid-name @dataclass(init=False) class Work(Book): """work instance of a book object""" diff --git a/bookwyrm/activitypub/note.py b/bookwyrm/activitypub/note.py index 6a081058cb..376560f6e8 100644 --- a/bookwyrm/activitypub/note.py +++ b/bookwyrm/activitypub/note.py @@ -50,6 +50,7 @@ def to_model( save=True, overwrite=True, allow_external_connections=True, + trigger=None, ): instance = super().to_model( model, instance, allow_create, save, overwrite, allow_external_connections diff --git a/bookwyrm/activitypub/ordered_collection.py b/bookwyrm/activitypub/ordered_collection.py index 32e37c9966..250490041d 100644 --- a/bookwyrm/activitypub/ordered_collection.py +++ b/bookwyrm/activitypub/ordered_collection.py @@ -18,7 +18,6 @@ class OrderedCollection(ActivityObject): type: str = "OrderedCollection" -# pylint: disable=invalid-name @dataclass(init=False) class OrderedCollectionPrivate(OrderedCollection): """an ordered collection with privacy settings""" diff --git a/bookwyrm/activitypub/verbs.py b/bookwyrm/activitypub/verbs.py index a365f4cc07..549f14c9c0 100644 --- a/bookwyrm/activitypub/verbs.py +++ b/bookwyrm/activitypub/verbs.py @@ -22,7 +22,6 @@ def action(self, allow_external_connections=True): self.object.to_model(allow_external_connections=allow_external_connections) -# pylint: disable=invalid-name @dataclass(init=False) class Create(Verb): """Create activity""" @@ -33,7 +32,6 @@ class Create(Verb): type: str = "Create" -# pylint: disable=invalid-name @dataclass(init=False) class Delete(Verb): """Create activity""" @@ -63,7 +61,6 @@ def action(self, allow_external_connections=True): # if we can't find it, we don't need to delete it because we don't have it -# pylint: disable=invalid-name @dataclass(init=False) class Update(Verb): """Update activity""" @@ -227,7 +224,6 @@ def action(self, allow_external_connections=True): self.to_model(allow_external_connections=allow_external_connections) -# pylint: disable=invalid-name @dataclass(init=False) class Announce(Verb): """boosting a status""" diff --git a/bookwyrm/activitystreams.py b/bookwyrm/activitystreams.py index 0009ac7a36..08fb757d5a 100644 --- a/bookwyrm/activitystreams.py +++ b/bookwyrm/activitystreams.py @@ -32,7 +32,7 @@ def unread_by_status_type_id(self, user_id): stream_id = self.stream_id(user_id) return f"{stream_id}-unread-by-type" - def get_rank(self, obj): # pylint: disable=no-self-use + def get_rank(self, obj): """statuses are sorted by date published""" return obj.published_date.timestamp() diff --git a/bookwyrm/apps.py b/bookwyrm/apps.py index 41b1a17a2e..d5384bb7b5 100644 --- a/bookwyrm/apps.py +++ b/bookwyrm/apps.py @@ -33,7 +33,6 @@ class BookwyrmConfig(AppConfig): name = "bookwyrm" verbose_name = "BookWyrm" - # pylint: disable=no-self-use def ready(self): """set up OTLP and preview image files, if desired""" if settings.OTEL_EXPORTER_OTLP_ENDPOINT or settings.OTEL_EXPORTER_CONSOLE: diff --git a/bookwyrm/book_search.py b/bookwyrm/book_search.py index cf48f4832e..106c68a83a 100644 --- a/bookwyrm/book_search.py +++ b/bookwyrm/book_search.py @@ -36,7 +36,6 @@ def search( ... -# pylint: disable=arguments-differ def search( query: str, *, @@ -143,7 +142,7 @@ def search_title_author( query = SearchQuery(query, config="simple") | SearchQuery(query, config="english") results = ( books.filter(*filters, search_vector=query) - .annotate(rank=SearchRank(F("search_vector"), query)) + .annotate(rank=SearchRank(F("search_vector"), query, normalization=32)) .filter(rank__gt=min_confidence) .order_by("-rank") ) diff --git a/bookwyrm/connectors/__init__.py b/bookwyrm/connectors/__init__.py index 3a4f5f3e03..ada2a78261 100644 --- a/bookwyrm/connectors/__init__.py +++ b/bookwyrm/connectors/__init__.py @@ -3,4 +3,4 @@ from .abstract_connector import ConnectorException from .abstract_connector import get_data, get_image, maybe_isbn -from .connector_manager import search, first_search_result +from .connector_manager import search, first_search_result, create_finna_connector diff --git a/bookwyrm/connectors/abstract_connector.py b/bookwyrm/connectors/abstract_connector.py index aa8edbeae9..178601f2ff 100644 --- a/bookwyrm/connectors/abstract_connector.py +++ b/bookwyrm/connectors/abstract_connector.py @@ -4,11 +4,10 @@ from typing import Optional, TypedDict, Any, Callable, Union, Iterator from urllib.parse import quote_plus -# pylint: disable-next=deprecated-module -import imghdr # Deprecated in 3.11 for removal in 3.13; no good alternative yet import logging import re import asyncio +from PIL import Image, UnidentifiedImageError import requests from requests.exceptions import RequestException import aiohttp @@ -86,7 +85,7 @@ async def get_results( ), "User-Agent": USER_AGENT, } - params = {"min_confidence": min_confidence} + params = {"min_confidence": str(min_confidence)} try: async with session.get(url, headers=headers, params=params) as response: if not response.ok: @@ -370,13 +369,14 @@ def get_image( return None, None image_content = ContentFile(resp.content) - extension = imghdr.what(None, image_content.read()) - if not extension: + try: + with Image.open(image_content) as im: + extension = str(im.format).lower() + return image_content, extension + except UnidentifiedImageError: logger.info("File requested was not an image: %s", url) return None, None - return image_content, extension - class Mapping: """associate a local database field with a field in an external dataset""" diff --git a/bookwyrm/connectors/connector_manager.py b/bookwyrm/connectors/connector_manager.py index ad68af1dc8..9965586da2 100644 --- a/bookwyrm/connectors/connector_manager.py +++ b/bookwyrm/connectors/connector_manager.py @@ -206,3 +206,26 @@ def raise_not_valid_url(url: str) -> None: if models.FederatedServer.is_blocked(url): raise ConnectorException(f"Attempting to load data from blocked url: {url}") + + +def create_finna_connector() -> None: + """create a Finna connector""" + + models.Connector.objects.create( + identifier="api.finna.fi", + name="Finna API", + connector_file="finna", + base_url="https://www.finna.fi", + books_url="https://api.finna.fi/api/v1/record" "?id=", + covers_url="https://api.finna.fi", + search_url="https://api.finna.fi/api/v1/search?limit=20" + "&filter[]=format%3a%220%2fBook%2f%22" + "&field[]=title&field[]=recordPage&field[]=authors" + "&field[]=year&field[]=id&field[]=formats&field[]=images" + "&lookfor=", + isbn_search_url="https://api.finna.fi/api/v1/search?limit=1" + "&filter[]=format%3a%220%2fBook%2f%22" + "&field[]=title&field[]=recordPage&field[]=authors&field[]=year" + "&field[]=id&field[]=formats&field[]=images" + "&lookfor=isbn:", + ) diff --git a/bookwyrm/connectors/finna.py b/bookwyrm/connectors/finna.py new file mode 100644 index 0000000000..59eedfbdcd --- /dev/null +++ b/bookwyrm/connectors/finna.py @@ -0,0 +1,398 @@ +"""finna data connector""" + +import re +from typing import Iterator + +from bookwyrm import models +from bookwyrm.book_search import SearchResult +from bookwyrm.models.book import FormatChoices +from .abstract_connector import AbstractConnector, Mapping, JsonDict +from .abstract_connector import get_data +from .connector_manager import ConnectorException, create_edition_task +from .openlibrary_languages import languages + + +class Connector(AbstractConnector): + """instantiate a connector for finna""" + + generated_remote_link_field = "id" + + def __init__(self, identifier: str): + super().__init__(identifier) + + get_first = lambda x, *args: x[0] if x else None + format_remote_id = lambda x: f"{self.books_url}{x}" + format_cover_url = lambda x: f"{self.covers_url}{x[0]}" if x else None + self.book_mappings = [ + Mapping("id", remote_field="id", formatter=format_remote_id), + Mapping("finnaKey", remote_field="id"), + Mapping("title", remote_field="shortTitle"), + Mapping("title", remote_field="title"), + Mapping("subtitle", remote_field="subTitle"), + Mapping("isbn10", remote_field="cleanIsbn"), + Mapping("languages", remote_field="languages", formatter=resolve_languages), + Mapping("authors", remote_field="authors", formatter=parse_authors), + Mapping("subjects", formatter=join_subject_list), + Mapping("publishedDate", remote_field="year"), + Mapping("cover", remote_field="images", formatter=format_cover_url), + Mapping("description", remote_field="summary", formatter=get_first), + Mapping("series", remote_field="series", formatter=parse_series_name), + Mapping( + "seriesNumber", + remote_field="series", + formatter=parse_series_number, + ), + Mapping("publishers", remote_field="publishers"), + Mapping( + "physicalFormat", + remote_field="formats", + formatter=describe_physical_format, + ), + Mapping( + "physicalFormatDetail", + remote_field="physicalDescriptions", + formatter=get_first, + ), + Mapping( + "pages", + remote_field="physicalDescriptions", + formatter=guess_page_numbers, + ), + ] + + self.author_mappings = [ + Mapping("id", remote_field="authors", formatter=self.get_remote_author_id), + Mapping("name", remote_field="authors", formatter=get_first_author), + ] + + def get_book_data(self, remote_id: str) -> JsonDict: + request_parameters = { + "field[]": [ + "authors", + "cleanIsbn", + "formats", + "id", + "images", + "isbns", + "languages", + "physicalDescriptions", + "publishers", + "recordPage", + "series", + "shortTitle", + "subjects", + "subTitle", + "summary", + "title", + "year", + ] + } + data = get_data( + url=remote_id, params=request_parameters # type:ignore[arg-type] + ) + extracted = data.get("records", []) + try: + data = extracted[0] + except (KeyError, IndexError): + raise ConnectorException("Invalid book data") + return data + + def get_remote_author_id(self, data: JsonDict) -> str | None: + """return search url for author info, as we don't + have way to retrieve author-id with the query""" + author = get_first_author(data) + if author: + return f"{self.search_url}{author}&type=Author" + return None + + def get_remote_id(self, data: JsonDict) -> str: + """return record-id page as book-id""" + return f"{self.books_url}{data.get('id')}" + + def parse_search_data( + self, data: JsonDict, min_confidence: float + ) -> Iterator[SearchResult]: + for idx, search_result in enumerate(data.get("records", [])): + authors = search_result.get("authors") + author = None + if authors: + author_list = parse_authors(authors) + if author_list: + author = "; ".join(author_list) + + confidence = 1 / (idx + 1) + if confidence < min_confidence: + break + + # Create some extra info on edition if it is audio-book or e-book + edition_info_title = describe_physical_format(search_result.get("formats")) + edition_info = "" + if edition_info_title and edition_info_title != "Hardcover": + for book_format, info_title in FormatChoices: + if book_format == edition_info_title: + edition_info = f" {info_title}" + break + + search_result = SearchResult( + title=f"{search_result.get('title')}{edition_info}", + key=f"{self.books_url}{search_result.get('id')}", + author=author, + cover=f"{self.covers_url}{search_result.get('images')[0]}" + if search_result.get("images") + else None, + year=search_result.get("year"), + view_link=f"{self.base_url}{search_result.get('recordPage')}", + confidence=confidence, + connector=self, + ) + yield search_result + + def parse_isbn_search_data(self, data: JsonDict) -> Iterator[SearchResult]: + """got some data""" + for idx, search_result in enumerate(data.get("records", [])): + authors = search_result.get("authors") + author = None + if authors: + author_list = parse_authors(authors) + if author_list: + author = "; ".join(author_list) + + confidence = 1 / (idx + 1) + yield SearchResult( + title=search_result.get("title"), + key=f"{self.books_url}{search_result.get('id')}", + author=author, + cover=f"{self.covers_url}{search_result.get('images')[0]}" + if search_result.get("images") + else None, + year=search_result.get("year"), + view_link=f"{self.base_url}{search_result.get('recordPage')}", + confidence=confidence, + connector=self, + ) + + def get_authors_from_data(self, data: JsonDict) -> Iterator[models.Author]: + authors = data.get("authors") + if authors: + for author in parse_authors(authors): + model = self.get_or_create_author( + f"{self.search_url}{author}&type=Author" + ) + if model: + yield model + + def expand_book_data(self, book: models.Book) -> None: + work = book + # go from the edition to the work, if necessary + if isinstance(book, models.Edition): + work = book.parent_work + + try: + edition_options = retrieve_versions(work.finna_key) + except ConnectorException: + return + + for edition in edition_options: + remote_id = self.get_remote_id(edition) + if remote_id: + create_edition_task.delay(self.connector.id, work.id, edition) + + def get_remote_id_from_model(self, obj: models.BookDataModel) -> str: + """use get_remote_id to figure out the link from a model obj""" + return f"{self.books_url}{obj.finna_key}" + + def is_work_data(self, data: JsonDict) -> bool: + """ + https://api.finna.fi/v1/search?id=anders.1946700&search=versions&view=&lng=fi&field[]=formats&field[]=series&field[]=title&field[]=authors&field[]=summary&field[]=cleanIsbn&field[]=id + + No real ordering what is work and what is edition, so pick first version as work + """ + edition_list = retrieve_versions(data.get("id")) + if edition_list: + return data.get("id") == edition_list[0].get("id") + return True + + def get_edition_from_work_data(self, data: JsonDict) -> JsonDict: + """No real distinctions what is work/edition, + so check all versions and pick preferred edition""" + edition_list = retrieve_versions(data.get("id")) + if not edition_list: + raise ConnectorException("No editions found for work") + edition = pick_preferred_edition(edition_list) + if not edition: + raise ConnectorException("No editions found for work") + return edition + + def get_work_from_edition_data(self, data: JsonDict) -> JsonDict: + return retrieve_versions(data.get("id"))[0] + + +def guess_page_numbers(data: JsonDict) -> str | None: + """Try to retrieve page count of edition""" + for row in data: + # Try to match page count text in style of '134 pages' or '134 sivua' + page_search = re.search(r"(\d+) (sivua|s\.|sidor|pages)", row) + page_count = page_search.group(1) if page_search else None + if page_count: + return page_count + # If we didn't match, try starting number + page_search = re.search(r"^(\d+)", row) + page_count = page_search.group(1) if page_search else None + if page_count: + return page_count + return None + + +def resolve_languages(data: JsonDict) -> list[str]: + """Use openlibrary language code list to resolve iso-lang codes""" + result_languages = [] + for language_code in data: + result_languages.append( + languages.get(f"/languages/{language_code}", language_code) + ) + return result_languages + + +def join_subject_list(data: list[JsonDict]) -> list[str]: + """Join list of string list about subject topics as one list""" + return [" ".join(info) for info in data] + + +def describe_physical_format(formats: list[JsonDict]) -> str: + """Map if book is physical book, eBook or audiobook""" + found_format = "Hardcover" + # Map finnish finna formats to bookwyrm codes + format_mapping = { + "1/Book/Book/": "Hardcover", + "1/Book/AudioBook/": "AudiobookFormat", + "1/Book/eBook/": "EBook", + } + for format_to_check in formats: + format_value = format_to_check.get("value") + if not isinstance(format_value, str): + continue + if (mapping_match := format_mapping.get(format_value, None)) is not None: + found_format = mapping_match + return found_format + + +def parse_series_name(series: list[JsonDict]) -> str | None: + """Parse series name if given""" + for info in series: + if "name" in info: + return info.get("name") + return None + + +def parse_series_number(series: list[JsonDict]) -> str | None: + """Parse series number from additional info if given""" + for info in series: + if "additional" in info: + return info.get("additional") + return None + + +def retrieve_versions(book_id: str | None) -> list[JsonDict]: + """ + https://api.finna.fi/v1/search?id=anders.1946700&search=versions&view=& + + Search all editions/versions of the book that finna is aware of + """ + + if not book_id: + return [] + + request_parameters = { + "id": book_id, + "search": "versions", + "view": "", + "field[]": [ + "authors", + "cleanIsbn", + "edition", + "formats", + "id", + "images", + "isbns", + "languages", + "physicalDescriptions", + "publishers", + "recordPage", + "series", + "shortTitle", + "subjects", + "subTitle", + "summary", + "title", + "year", + ], + } + data = get_data( + url="https://api.finna.fi/api/v1/search", + params=request_parameters, # type: ignore[arg-type] + ) + result = data.get("records", []) + if isinstance(result, list): + return result + return [] + + +def get_first_author(data: JsonDict) -> str | None: + """Parse authors and return first one, usually the main author""" + authors = parse_authors(data) + if authors: + return authors[0] + return None + + +def parse_authors(data: JsonDict) -> list[str]: + """Search author info, they are given in SurName, FirstName style + return them also as FirstName SurName order""" + if author_keys := data.get("primary", None): + if author_keys: + # we search for 'kirjoittaja' role, if any found + tulos = list( + # Convert from 'Lewis, Michael' to 'Michael Lewis' + " ".join(reversed(author_key.split(", "))) + for author_key, author_info in author_keys.items() + if "kirjoittaja" in author_info.get("role", []) + ) + if tulos: + return tulos + # if not found, we search any role that is not specificly something + tulos = list( + " ".join(reversed(author_key.split(", "))) + for author_key, author_info in author_keys.items() + if "-" in author_info.get("role", []) + ) + return tulos + return [] + + +def pick_preferred_edition(options: list[JsonDict]) -> JsonDict | None: + """favor physical copies with covers in english""" + if not options: + return None + if len(options) == 1: + return options[0] + + # pick hardcodver book if present over eBook/audiobook + formats = ["1/Book/Book/"] + format_selection = [] + for edition in options: + for edition_format in edition.get("formats", []): + if edition_format.get("value") in formats: + format_selection.append(edition) + options = format_selection or options + + # Prefer Finnish/Swedish language editions if any found + language_list = ["fin", "swe"] + languages_selection = [] + for edition in options: + for edition_language in edition.get("languages", []): + if edition_language in language_list: + languages_selection.append(edition) + options = languages_selection or options + + options = [e for e in options if e.get("cleanIsbn")] or options + return options[0] diff --git a/bookwyrm/connectors/inventaire.py b/bookwyrm/connectors/inventaire.py index 249f6b9ca5..53aade98d0 100644 --- a/bookwyrm/connectors/inventaire.py +++ b/bookwyrm/connectors/inventaire.py @@ -85,12 +85,15 @@ def get_book_data(self, remote_id: str) -> JsonDict: def parse_search_data( self, data: JsonDict, min_confidence: float ) -> Iterator[SearchResult]: + best_score = None for search_result in data.get("results", []): - images = search_result.get("image") - cover = f"{self.covers_url}/img/entities/{images[0]}" if images else None + image = search_result.get("image") + cover = f"{self.covers_url}{image}" if image else None # a deeply messy translation of inventaire's scores confidence = float(search_result.get("_score", 0.1)) - confidence = 0.1 if confidence < 150 else 0.999 + if best_score is None: + best_score = confidence + confidence = (confidence / best_score) - 0.001 if confidence < min_confidence: continue yield SearchResult( @@ -222,9 +225,10 @@ def resolve_keys(self, keys: Iterable[str]) -> list[str]: def get_description(self, links: JsonDict) -> str: """grab an extracted excerpt from wikipedia""" link = links.get("enwiki") - if not link: + if not link or not link.get("title"): return "" - url = f"{self.base_url}/api/data?action=wp-extract&lang=en&title={link}" + title = link.get("title") + url = f"{self.base_url}/api/data?action=wp-extract&lang=en&title={title}" try: data = get_data(url) except ConnectorException: diff --git a/bookwyrm/connectors/openlibrary.py b/bookwyrm/connectors/openlibrary.py index 4dc6d6ac14..b6ecc4cd54 100644 --- a/bookwyrm/connectors/openlibrary.py +++ b/bookwyrm/connectors/openlibrary.py @@ -31,8 +31,12 @@ def __init__(self, identifier: str): Mapping("subtitle"), Mapping("description", formatter=get_description), Mapping("languages", formatter=get_languages), - Mapping("series", formatter=get_first), - Mapping("seriesNumber", remote_field="series_number"), + Mapping("series", formatter=parse_series), + Mapping( + "seriesNumber", + remote_field="series", + formatter=parse_series_number, + ), Mapping("subjects"), Mapping("subjectPlaces", remote_field="subject_places"), Mapping("isbn13", remote_field="isbn_13", formatter=get_first), @@ -186,11 +190,14 @@ def parse_isbn_search_data(self, data: JsonDict) -> Iterator[SearchResult]: key = self.books_url + search_result["key"] authors = search_result.get("authors") or [{"name": "Unknown"}] author_names = [author.get("name") for author in authors] + cover_obj = search_result.get("cover") + cover = cover_obj.get("medium") if cover_obj else "" yield SearchResult( title=search_result.get("title"), key=key, author=", ".join(author_names), connector=self, + cover=cover, year=search_result.get("publish_date"), ) @@ -323,3 +330,47 @@ def pick_default_edition(options: list[JsonDict]) -> Optional[JsonDict]: options = [e for e in options if e.get("isbn_13")] or options options = [e for e in options if e.get("ocaid")] or options return options[0] + + +def parse_series(data: list[str]) -> str | None: + """try to parse series name from different styles, + * 'series name, #1' + * 'title -- number' + * 'title, Book number' + * 'title (number)' + """ + if not data: + return None + series_title = data[0].strip() + for regex_to_try in [ + r"(.+)(?:, ?#\d+)$", + r"(.+)(?:-- ?\d+)$", + r"(.+)(?:, Book ?\d+)$", + r"(.+)(?: \(\d+\))$", + ]: + if series_match := re.search(regex_to_try, series_title): + series_name = series_match.group(1).strip() + return series_name + return series_title + + +def parse_series_number(data: list[str]) -> str | None: + """try to parse series number from different styles, + * 'series name, #1' + * 'title -- number' + * 'title, Book number' + * 'title (number)' + """ + if not data: + return None + series_title = data[0].strip() + for regex_to_try in [ + r"(.+)#(\d+)$", + r"(.+) -- (\d+)$", + r"(.+), Book (\d+)$", + r"(.+)\((\d+)\)", + ]: + if series_match := re.search(regex_to_try, series_title): + series_number = series_match.group(2) + return series_number + return None diff --git a/bookwyrm/connectors/settings.py b/bookwyrm/connectors/settings.py index 927e39b265..4ef149a21d 100644 --- a/bookwyrm/connectors/settings.py +++ b/bookwyrm/connectors/settings.py @@ -1,3 +1,8 @@ """ settings book data connectors """ -CONNECTORS = ["openlibrary", "inventaire", "bookwyrm_connector"] +CONNECTORS = [ + "openlibrary", + "inventaire", + "bookwyrm_connector", + "finna", +] diff --git a/bookwyrm/context_processors.py b/bookwyrm/context_processors.py index 0047bfce11..bec704a2c7 100644 --- a/bookwyrm/context_processors.py +++ b/bookwyrm/context_processors.py @@ -2,7 +2,7 @@ from bookwyrm import models, settings -def site_settings(request): # pylint: disable=unused-argument +def site_settings(request): """include the custom info about the site""" request_protocol = "https://" if not request.is_secure(): diff --git a/bookwyrm/forms/admin.py b/bookwyrm/forms/admin.py index 72f50ccb87..783c78d50b 100644 --- a/bookwyrm/forms/admin.py +++ b/bookwyrm/forms/admin.py @@ -199,3 +199,8 @@ def save(self, request, *args, **kwargs): if not request.user.has_perm("bookwyrm.moderate_user"): raise PermissionDenied() return super().save(*args, **kwargs) + + +class ExportFileExpiryForm(forms.Form): + + hours = forms.IntegerField(min_value=1) diff --git a/bookwyrm/forms/books.py b/bookwyrm/forms/books.py index f73ce3f5a3..f9a110efc9 100644 --- a/bookwyrm/forms/books.py +++ b/bookwyrm/forms/books.py @@ -4,6 +4,7 @@ from file_resubmit.widgets import ResubmitImageWidget from bookwyrm import models +from bookwyrm.settings import DATA_UPLOAD_MAX_MEMORY_SIZE from .custom_form import CustomForm from .widgets import ArrayWidget, SelectDateWidget, Select @@ -16,6 +17,22 @@ class Meta: help_texts = {f: None for f in fields} +class ResubmitImageWidgetWithWarning(ResubmitImageWidget): + """Define template to use that shows warning on too big image""" + + template_name = "widgets/clearable_file_input_with_warning.html" + + def get_context(self, name, value, attrs): + context = super().get_context(name, value, attrs) + context["widget"]["attrs"].update( + { + "data-max-upload": DATA_UPLOAD_MAX_MEMORY_SIZE, + "max_mb": DATA_UPLOAD_MAX_MEMORY_SIZE >> 20, + } + ) + return context + + class EditionForm(CustomForm): class Meta: model = models.Edition @@ -40,6 +57,7 @@ class Meta: "openlibrary_key", "inventaire_id", "goodreads_key", + "finna_key", "oclc_number", "asin", "aasin", @@ -71,7 +89,9 @@ class Meta: "published_date": SelectDateWidget( attrs={"aria-describedby": "desc_published_date"} ), - "cover": ResubmitImageWidget(attrs={"aria-describedby": "desc_cover"}), + "cover": ResubmitImageWidgetWithWarning( + attrs={"aria-describedby": "desc_cover"} + ), "physical_format": Select( attrs={"aria-describedby": "desc_physical_format"} ), @@ -93,6 +113,7 @@ class Meta: "oclc_number": forms.TextInput( attrs={"aria-describedby": "desc_oclc_number"} ), + "finna_key": forms.TextInput(attrs={"aria-describedby": "desc_finna_key"}), "ASIN": forms.TextInput(attrs={"aria-describedby": "desc_ASIN"}), "AASIN": forms.TextInput(attrs={"aria-describedby": "desc_AASIN"}), "isfdb": forms.TextInput(attrs={"aria-describedby": "desc_isfdb"}), diff --git a/bookwyrm/forms/custom_form.py b/bookwyrm/forms/custom_form.py index c604deea42..6b425d216a 100644 --- a/bookwyrm/forms/custom_form.py +++ b/bookwyrm/forms/custom_form.py @@ -15,9 +15,9 @@ def __init__(self, *args, **kwargs): css_classes["number"] = "input" css_classes["checkbox"] = "checkbox" css_classes["textarea"] = "textarea" - # pylint: disable=super-with-arguments super().__init__(*args, **kwargs) for visible in self.visible_fields(): + input_type = "" if hasattr(visible.field.widget, "input_type"): input_type = visible.field.widget.input_type if isinstance(visible.field.widget, Textarea): diff --git a/bookwyrm/forms/edit_user.py b/bookwyrm/forms/edit_user.py index 9024972c33..018e5b16cd 100644 --- a/bookwyrm/forms/edit_user.py +++ b/bookwyrm/forms/edit_user.py @@ -18,6 +18,7 @@ class Meta: "email", "summary", "show_goal", + "show_ratings", "show_suggested_users", "manually_approves_followers", "default_post_privacy", @@ -111,7 +112,7 @@ def clean(self): self.add_error("confirm_password", _("Password does not match")) try: - validate_password(new_password) + validate_password(new_password, user=self.instance) except ValidationError as err: self.add_error("password", err) diff --git a/bookwyrm/forms/forms.py b/bookwyrm/forms/forms.py index 3d555f308d..0ecf3e3018 100644 --- a/bookwyrm/forms/forms.py +++ b/bookwyrm/forms/forms.py @@ -6,6 +6,7 @@ from bookwyrm import models from bookwyrm.models.user import FeedFilterChoices +from bookwyrm.models.fields import ClearableFileInputWithWarning from .custom_form import CustomForm # pylint: disable=missing-class-docstring @@ -22,11 +23,11 @@ class Meta: class ImportForm(forms.Form): - csv_file = forms.FileField() + csv_file = forms.FileField(widget=ClearableFileInputWithWarning) class ImportUserForm(forms.Form): - archive_file = forms.FileField() + archive_file = forms.FileField(widget=ClearableFileInputWithWarning) class ShelfForm(CustomForm): diff --git a/bookwyrm/forms/landing.py b/bookwyrm/forms/landing.py index 1da4fc4f11..290ee3f376 100644 --- a/bookwyrm/forms/landing.py +++ b/bookwyrm/forms/landing.py @@ -34,7 +34,6 @@ def infer_username(self): def add_invalid_password_error(self): """We don't want to be too specific about this""" - # pylint: disable=attribute-defined-outside-init self.non_field_errors = _("Username or password are incorrect") @@ -49,8 +48,15 @@ def clean(self): """Check if the username is taken""" cleaned_data = super().clean() localname = cleaned_data.get("localname").strip() + + # Create a temporary user instance for password validation + temp_user = self._meta.model( + localname=localname, + email=cleaned_data.get("email"), + ) + try: - validate_password(cleaned_data.get("password")) + validate_password(cleaned_data.get("password"), user=temp_user) except ValidationError as err: self.add_error("password", err) if models.User.objects.filter(localname=localname).first(): @@ -65,6 +71,10 @@ def clean(self): if email and models.User.objects.filter(email=email).exists(): self.add_error("email", _("A user with this email already exists.")) + email_domain = email.split("@")[-1] + if email and models.EmailBlocklist.objects.filter(domain=email_domain).exists(): + self.add_error("email", _("This email address cannot be registered.")) + class Meta: model = models.InviteRequest fields = ["email", "answer"] @@ -90,7 +100,7 @@ def clean(self): self.add_error("confirm_password", _("Password does not match")) try: - validate_password(new_password) + validate_password(new_password, user=self.instance) except ValidationError as err: self.add_error("password", err) diff --git a/bookwyrm/forms/links.py b/bookwyrm/forms/links.py index 5156d2578d..06de9a304d 100644 --- a/bookwyrm/forms/links.py +++ b/bookwyrm/forms/links.py @@ -30,22 +30,26 @@ def clean(self): if models.LinkDomain.objects.filter(domain=domain).exists(): status = models.LinkDomain.objects.get(domain=domain).status if status == "blocked": - # pylint: disable=line-too-long self.add_error( "url", _( - "This domain is blocked. Please contact your administrator if you think this is an error." + "This domain is blocked. " + "Please contact your administrator if you think " + "this is an error." ), ) - if ( - models.FileLink.objects.filter(url=url, book=book, filetype=filetype) - .exclude(pk=self.instance) - .exists() - ): - # pylint: disable=line-too-long - self.add_error( - "url", - _( - "This link with file type has already been added for this book. If it is not visible, the domain is still pending." - ), - ) + return + if current_links := models.FileLink.objects.filter( + url=url, book=book, filetype=filetype + ).all(): + for link in current_links: + if link == self.instance: + continue + self.add_error( + "url", + _( + "This link with file type has already been added for this book." + " If it is not visible, the domain is still pending." + ), + ) + break diff --git a/bookwyrm/forms/widgets.py b/bookwyrm/forms/widgets.py index ee9345aa03..001fdbec40 100644 --- a/bookwyrm/forms/widgets.py +++ b/bookwyrm/forms/widgets.py @@ -5,8 +5,6 @@ class ArrayWidget(forms.widgets.TextInput): """Inputs for postgres array fields""" - # pylint: disable=unused-argument - # pylint: disable=no-self-use def value_from_datadict(self, data, files, name): """get all values for this name""" return [i for i in data.getlist(name) if i] diff --git a/bookwyrm/importers/__init__.py b/bookwyrm/importers/__init__.py index 8e92872f25..497eebcf69 100644 --- a/bookwyrm/importers/__init__.py +++ b/bookwyrm/importers/__init__.py @@ -1,9 +1,10 @@ """ import classes """ from .importer import Importer -from .bookwyrm_import import BookwyrmImporter +from .bookwyrm_import import BookwyrmImporter, BookwyrmBooksImporter from .calibre_import import CalibreImporter from .goodreads_import import GoodreadsImporter from .librarything_import import LibrarythingImporter from .openlibrary_import import OpenLibraryImporter from .storygraph_import import StorygraphImporter +from .openreads_import import OpenReadsImporter diff --git a/bookwyrm/importers/bookwyrm_import.py b/bookwyrm/importers/bookwyrm_import.py index 206cd62197..d4fedb4f79 100644 --- a/bookwyrm/importers/bookwyrm_import.py +++ b/bookwyrm/importers/bookwyrm_import.py @@ -3,6 +3,7 @@ from bookwyrm.models import User from bookwyrm.models.bookwyrm_import_job import BookwyrmImportJob +from . import Importer class BookwyrmImporter: @@ -21,4 +22,33 @@ def process_import( job = BookwyrmImportJob.objects.create( user=user, archive_file=archive_file, required=required ) + return job + + def create_retry_job( + self, user: User, original_job: BookwyrmImportJob + ) -> BookwyrmImportJob: + """retry items that didn't import""" + + job = BookwyrmImportJob.objects.create( + user=user, + archive_file=original_job.archive_file, + required=original_job.required, + retry=True, + ) + + return job + + +class BookwyrmBooksImporter(Importer): + """ + Handle reading a csv from BookWyrm. + Goodreads is the default importer, we basically just use the same structure + But BookWyrm has additional attributes in the csv + """ + + service = "BookWyrm" + row_mappings_guesses = Importer.row_mappings_guesses + [ + ("shelf_name", ["shelf_name"]), + ("review_published", ["review_published"]), + ] diff --git a/bookwyrm/importers/goodreads_import.py b/bookwyrm/importers/goodreads_import.py index c0dc0ea283..8b3e94cbc7 100644 --- a/bookwyrm/importers/goodreads_import.py +++ b/bookwyrm/importers/goodreads_import.py @@ -1,4 +1,5 @@ """ handle reading a csv from goodreads """ +from typing import Optional from . import Importer @@ -7,3 +8,10 @@ class GoodreadsImporter(Importer): For a more complete example of overriding see librarything_import.py""" service = "Goodreads" + + def normalize_row( + self, entry: dict[str, str], mappings: dict[str, Optional[str]] + ) -> dict[str, Optional[str]]: + normalized = super().normalize_row(entry, mappings) + normalized["goodreads_key"] = normalized["id"] + return normalized diff --git a/bookwyrm/importers/importer.py b/bookwyrm/importers/importer.py index 5b3192fa5b..d2a11d7f21 100644 --- a/bookwyrm/importers/importer.py +++ b/bookwyrm/importers/importer.py @@ -18,17 +18,26 @@ class Importer: row_mappings_guesses = [ ("id", ["id", "book id"]), ("title", ["title"]), - ("authors", ["author", "authors", "primary author"]), - ("isbn_10", ["isbn10", "isbn", "isbn/uid"]), - ("isbn_13", ["isbn13", "isbn", "isbns", "isbn/uid"]), + ("authors", ["author_text", "author", "authors", "primary author"]), + ("isbn_10", ["isbn_10", "isbn10", "isbn", "isbn/uid"]), + ("isbn_13", ["isbn_13", "isbn13", "isbn", "isbns", "isbn/uid"]), ("shelf", ["shelf", "exclusive shelf", "read status", "bookshelf"]), - ("review_name", ["review name"]), - ("review_body", ["my review", "review"]), + ("review_name", ["review_name", "review name"]), + ("review_body", ["review_content", "my review", "review"]), ("rating", ["my rating", "rating", "star rating"]), - ("date_added", ["date added", "entry date", "added"]), - ("date_started", ["date started", "started"]), - ("date_finished", ["date finished", "last date read", "date read", "finished"]), + ( + "date_added", + ["shelf_date", "date_added", "date added", "entry date", "added"], + ), + ("date_started", ["start_date", "date started", "started"]), + ( + "date_finished", + ["finish_date", "date finished", "last date read", "date read", "finished"], + ), ] + + # TODO: stopped + date_fields = ["date_added", "date_started", "date_finished"] shelf_mapping_guesses = { "to-read": ["to-read", "want to read"], @@ -36,9 +45,14 @@ class Importer: "reading": ["currently-reading", "reading", "currently reading"], } - # pylint: disable=too-many-locals + # pylint: disable=too-many-arguments def create_job( - self, user: User, csv_file: Iterable[str], include_reviews: bool, privacy: str + self, + user: User, + csv_file: Iterable[str], + include_reviews: bool, + privacy: str, + create_shelves: bool = True, ) -> ImportJob: """check over a csv and creates a database entry for the job""" csv_reader = csv.DictReader(csv_file, delimiter=self.delimiter) @@ -55,6 +69,7 @@ def create_job( job = ImportJob.objects.create( user=user, include_reviews=include_reviews, + create_shelves=create_shelves, privacy=privacy, mappings=mappings, source=self.service, @@ -114,7 +129,7 @@ def get_shelf(self, normalized_row: dict[str, Optional[str]]) -> Optional[str]: shelf = [ s for (s, gs) in self.shelf_mapping_guesses.items() if shelf_name in gs ] - return shelf[0] if shelf else None + return shelf[0] if shelf else normalized_row.get("shelf") or None # pylint: disable=no-self-use def normalize_row( @@ -149,6 +164,7 @@ def create_retry_job( job = ImportJob.objects.create( user=user, include_reviews=original_job.include_reviews, + create_shelves=original_job.create_shelves, privacy=original_job.privacy, source=original_job.source, # TODO: allow users to adjust mappings diff --git a/bookwyrm/importers/librarything_import.py b/bookwyrm/importers/librarything_import.py index 145657ba08..24a2626bf6 100644 --- a/bookwyrm/importers/librarything_import.py +++ b/bookwyrm/importers/librarything_import.py @@ -20,7 +20,7 @@ class LibrarythingImporter(Importer): def normalize_row( self, entry: dict[str, str], mappings: dict[str, Optional[str]] - ) -> dict[str, Optional[str]]: # pylint: disable=no-self-use + ) -> dict[str, Optional[str]]: """use the dataclass to create the formatted row of data""" normalized = { k: _remove_brackets(entry.get(v) if v else None) diff --git a/bookwyrm/importers/openreads_import.py b/bookwyrm/importers/openreads_import.py new file mode 100644 index 0000000000..e6e12c2ef1 --- /dev/null +++ b/bookwyrm/importers/openreads_import.py @@ -0,0 +1,60 @@ +""" handle reading a csv from openreads""" +from typing import Any, Optional +from datetime import datetime +from bookwyrm.models import Shelf + +from . import Importer + + +def parse_iso_timestamp(iso_date: str | None) -> None | str: + """Parse iso timestamp and return iso-formated date""" + if not iso_date: + return iso_date + return datetime.fromisoformat(iso_date).date().isoformat() + + +class OpenReadsImporter(Importer): + """csv downloads from OpenLibrary""" + + service = "OpenReads" + + def __init__(self, *args: Any, **kwargs: Any): + self.row_mappings_guesses.append(("openlibrary_key", ["olid"])) + self.row_mappings_guesses.append(("pages", ["pages"])) + self.row_mappings_guesses.append(("description", ["description"])) + self.row_mappings_guesses.append(("physical_format", ["book_format"])) + self.row_mappings_guesses.append(("published_date", ["publication_year"])) + super().__init__(*args, **kwargs) + + def normalize_row( + self, entry: dict[str, str], mappings: dict[str, Optional[str]] + ) -> dict[str, Optional[str]]: + normalized = {k: entry.get(v) if v else None for k, v in mappings.items()} + + reading_list = value.split(";") if (value := entry.get("readings")) else [] + if reading_list: + if reading_dates := reading_list[0].split("|"): + normalized["date_started"] = ( + parse_iso_timestamp(reading_dates[0]) or None + ) + normalized["date_finished"] = ( + parse_iso_timestamp(reading_dates[1]) or None + ) + if date_added := normalized.get("date_added"): + normalized["date_added"] = parse_iso_timestamp(date_added) + if read_status := entry.get("status"): + match read_status: + case "finished": + normalized["shelf"] = Shelf.READ_FINISHED + case "in_progress": + normalized["shelf"] = Shelf.READING + case "abandoned": + normalized["shelf"] = Shelf.STOPPED_READING + return normalized + + def get_shelf(self, normalized_row: dict[str, Optional[str]]) -> Optional[str]: + if normalized_row["date_finished"]: + return Shelf.READ_FINISHED + if normalized_row["date_started"]: + return Shelf.READING + return Shelf.TO_READ diff --git a/bookwyrm/lists_stream.py b/bookwyrm/lists_stream.py index 148b81a78b..479eacb193 100644 --- a/bookwyrm/lists_stream.py +++ b/bookwyrm/lists_stream.py @@ -18,7 +18,7 @@ def stream_id(self, user): # pylint: disable=no-self-use return f"{user}-lists" return f"{user.id}-lists" - def get_rank(self, obj): # pylint: disable=no-self-use + def get_rank(self, obj): """lists are sorted by updated date""" return obj.updated_date.timestamp() diff --git a/bookwyrm/management/commands/add_finna_connector.py b/bookwyrm/management/commands/add_finna_connector.py new file mode 100644 index 0000000000..6da28570a3 --- /dev/null +++ b/bookwyrm/management/commands/add_finna_connector.py @@ -0,0 +1,58 @@ +""" Add finna connector to connectors """ +from django.core.management.base import BaseCommand + +from bookwyrm import models + + +def enable_finna_connector(): + + models.Connector.objects.create( + identifier="api.finna.fi", + name="Finna API", + connector_file="finna", + base_url="https://www.finna.fi", + books_url="https://api.finna.fi/api/v1/record" "?id=", + covers_url="https://api.finna.fi", + search_url="https://api.finna.fi/api/v1/search?limit=20" + "&filter[]=format%3a%220%2fBook%2f%22" + "&field[]=title&field[]=recordPage&field[]=authors" + "&field[]=year&field[]=id&field[]=formats&field[]=images" + "&lookfor=", + isbn_search_url="https://api.finna.fi/api/v1/search?limit=1" + "&filter[]=format%3a%220%2fBook%2f%22" + "&field[]=title&field[]=recordPage&field[]=authors&field[]=year" + "&field[]=id&field[]=formats&field[]=images" + "&lookfor=isbn:", + ) + + +def remove_finna_connector(): + models.Connector.objects.filter(identifier="api.finna.fi").update( + active=False, deactivation_reason="Disabled by management command" + ) + print("Finna connector deactivated") + + +# pylint: disable=no-self-use +# pylint: disable=unused-argument +class Command(BaseCommand): + """command-line options""" + + help = "Setup Finna API connector" + + def add_arguments(self, parser): + """specify argument to remove connector""" + parser.add_argument( + "--deactivate", + action="store_true", + help="Deactivate the finna connector from config", + ) + + def handle(self, *args, **options): + """enable or remove connector""" + if options.get("deactivate"): + print("Deactivate finna connector config if one present") + remove_finna_connector() + else: + print("Adding Finna API connector to configuration") + enable_finna_connector() diff --git a/bookwyrm/management/commands/initdb.py b/bookwyrm/management/commands/initdb.py index ef8aff0fb8..88941a653e 100644 --- a/bookwyrm/management/commands/initdb.py +++ b/bookwyrm/management/commands/initdb.py @@ -77,7 +77,7 @@ def init_permissions(): def init_connectors(): """access book data sources""" - models.Connector.objects.create( + models.Connector.objects.get_or_create( identifier="bookwyrm.social", name="Bookwyrm.social", connector_file="bookwyrm_connector", @@ -90,7 +90,7 @@ def init_connectors(): ) # pylint: disable=line-too-long - models.Connector.objects.create( + models.Connector.objects.get_or_create( identifier="inventaire.io", name="Inventaire", connector_file="inventaire", @@ -99,10 +99,10 @@ def init_connectors(): covers_url="https://inventaire.io", search_url="https://inventaire.io/api/search?types=works&types=works&search=", isbn_search_url="https://inventaire.io/api/entities?action=by-uris&uris=isbn%3A", - priority=1, + priority=3, ) - models.Connector.objects.create( + models.Connector.objects.get_or_create( identifier="openlibrary.org", name="OpenLibrary", connector_file="openlibrary", @@ -111,19 +111,20 @@ def init_connectors(): covers_url="https://covers.openlibrary.org", search_url="https://openlibrary.org/search?q=", isbn_search_url="https://openlibrary.org/api/books?jscmd=data&format=json&bibkeys=ISBN:", - priority=1, + priority=3, ) def init_settings(): """info about the instance""" group_editor = Group.objects.filter(name="editor").first() - models.SiteSettings.objects.create( - support_link="https://www.patreon.com/bookwyrm", - support_title="Patreon", - install_mode=True, - default_user_auth_group=group_editor, - ) + if not models.SiteSettings.objects.all().first(): + models.SiteSettings.objects.create( + support_link="https://www.patreon.com/bookwyrm", + support_title="Patreon", + install_mode=True, + default_user_auth_group=group_editor, + ) def init_link_domains(): @@ -136,7 +137,7 @@ def init_link_domains(): ("theanarchistlibrary.org", "The Anarchist Library"), ] for domain, name in domains: - models.LinkDomain.objects.create( + models.LinkDomain.objects.get_or_create( domain=domain, name=name, status="approved", diff --git a/bookwyrm/management/commands/show_duplicate_authors.py b/bookwyrm/management/commands/show_duplicate_authors.py new file mode 100644 index 0000000000..34e5da2b0e --- /dev/null +++ b/bookwyrm/management/commands/show_duplicate_authors.py @@ -0,0 +1,51 @@ +from django.core.management.base import BaseCommand +from django.db.models import Count +from bookwyrm import models + + +def find_duplicate_author_names(): + """Show authors that have same name""" + dupes = ( + models.Author.objects.values("name") + .annotate(Count("name")) + .filter(name__count__gt=1) + .exclude(name="") + .exclude(name__isnull=True) + .order_by("name__count") + ) + + for dupe in dupes: + value = dupe["name"] + print("----------") + objs = ( + models.Author.objects.filter(name=value) + .annotate(num_books=Count("book", distinct=True)) + .order_by("-num_books", "id") + ) + print( + "You could check if the following authors are actually the same and can be merged, (only checked based on name)" + ) + for obj in objs: + born = obj.born.year if obj.born else "" + died = obj.died.year if obj.died else "" + years = "" + if born or died: + years = f" ({born}-{died})" + print( + f"- {obj.remote_id}, {obj.name}{years} book editions found:{obj.num_books}" + ) + + +class Command(BaseCommand): + """Show all the authors that appear with same name, but different id""" + + help = "show authors with same name but different id" + + # pylint: disable=no-self-use,unused-argument + def handle(self, *args, **options): + """run deduplications""" + find_duplicate_author_names() + print("----------") + print( + "You should manually check each author id to determine if they are same author before thinking of merging" + ) diff --git a/bookwyrm/migrations/0006_auto_20200221_1702_squashed_0064_merge_20201101_1913.py b/bookwyrm/migrations/0006_auto_20200221_1702_squashed_0064_merge_20201101_1913.py index f25bafe157..b35d6ca480 100644 --- a/bookwyrm/migrations/0006_auto_20200221_1702_squashed_0064_merge_20201101_1913.py +++ b/bookwyrm/migrations/0006_auto_20200221_1702_squashed_0064_merge_20201101_1913.py @@ -481,7 +481,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", @@ -496,7 +496,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="userblocks", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( _negated=True, user_subject=django.db.models.expressions.F("user_object"), ), @@ -506,7 +506,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="userfollowrequest", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( _negated=True, user_subject=django.db.models.expressions.F("user_object"), ), @@ -516,7 +516,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="userfollows", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( _negated=True, user_subject=django.db.models.expressions.F("user_object"), ), @@ -610,7 +610,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="connector", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( connector_file__in=bookwyrm.models.connector.ConnectorFiles ), name="connector_file_valid", @@ -841,7 +841,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", @@ -1099,7 +1099,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", @@ -1182,7 +1182,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", @@ -1644,7 +1644,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", diff --git a/bookwyrm/migrations/0045_auto_20210210_2114.py b/bookwyrm/migrations/0045_auto_20210210_2114.py index 22f33cf471..ebf3042ee1 100644 --- a/bookwyrm/migrations/0045_auto_20210210_2114.py +++ b/bookwyrm/migrations/0045_auto_20210210_2114.py @@ -90,7 +90,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", diff --git a/bookwyrm/migrations/0046_reviewrating.py b/bookwyrm/migrations/0046_reviewrating.py index 26f6f36a69..961075fe5a 100644 --- a/bookwyrm/migrations/0046_reviewrating.py +++ b/bookwyrm/migrations/0046_reviewrating.py @@ -4,7 +4,6 @@ from django.db import connection from django.db.models import Q import django.db.models.deletion -from psycopg2.extras import execute_values def convert_review_rating(app_registry, schema_editor): @@ -19,8 +18,7 @@ def convert_review_rating(app_registry, schema_editor): with connection.cursor() as cursor: values = [(r.id,) for r in reviews] - execute_values( - cursor, + cursor.executemany( """ INSERT INTO bookwyrm_reviewrating(review_ptr_id) VALUES %s""", diff --git a/bookwyrm/migrations/0049_auto_20210309_0156.py b/bookwyrm/migrations/0049_auto_20210309_0156.py index ae9d77a893..7dd0411f4e 100644 --- a/bookwyrm/migrations/0049_auto_20210309_0156.py +++ b/bookwyrm/migrations/0049_auto_20210309_0156.py @@ -104,7 +104,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="report", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( _negated=True, reporter=django.db.models.expressions.F("user") ), name="self_report", diff --git a/bookwyrm/migrations/0051_auto_20210316_1950.py b/bookwyrm/migrations/0051_auto_20210316_1950.py index 3caecbbe13..6ef5e2a122 100644 --- a/bookwyrm/migrations/0051_auto_20210316_1950.py +++ b/bookwyrm/migrations/0051_auto_20210316_1950.py @@ -46,7 +46,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( notification_type__in=[ "FAVORITE", "REPLY", diff --git a/bookwyrm/migrations/0086_auto_20210827_1727.py b/bookwyrm/migrations/0086_auto_20210827_1727.py index ef6af206b8..4550628177 100644 --- a/bookwyrm/migrations/0086_auto_20210827_1727.py +++ b/bookwyrm/migrations/0086_auto_20210827_1727.py @@ -31,7 +31,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="readthrough", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( ("finish_date__gte", django.db.models.expressions.F("start_date")) ), name="chronology", diff --git a/bookwyrm/migrations/0107_auto_20211016_0639.py b/bookwyrm/migrations/0107_auto_20211016_0639.py index 61dffca348..bc27d3d804 100644 --- a/bookwyrm/migrations/0107_auto_20211016_0639.py +++ b/bookwyrm/migrations/0107_auto_20211016_0639.py @@ -767,7 +767,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( ( "notification_type__in", [ diff --git a/bookwyrm/migrations/0112_auto_20211022_0844.py b/bookwyrm/migrations/0112_auto_20211022_0844.py index 246480b3a9..43e9d806cc 100644 --- a/bookwyrm/migrations/0112_auto_20211022_0844.py +++ b/bookwyrm/migrations/0112_auto_20211022_0844.py @@ -62,7 +62,7 @@ class Migration(migrations.Migration): migrations.AddConstraint( model_name="notification", constraint=models.CheckConstraint( - check=models.Q( + condition=models.Q( ( "notification_type__in", [ diff --git a/bookwyrm/migrations/0189_importjob_create_shelves.py b/bookwyrm/migrations/0189_importjob_create_shelves.py new file mode 100644 index 0000000000..a1b1fc5128 --- /dev/null +++ b/bookwyrm/migrations/0189_importjob_create_shelves.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.23 on 2023-11-25 05:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0188_theme_loads"), + ] + + operations = [ + migrations.AddField( + model_name="importjob", + name="create_shelves", + field=models.BooleanField(default=True), + ), + ] diff --git a/bookwyrm/migrations/0201_alter_hashtag_name_alter_user_localname.py b/bookwyrm/migrations/0201_alter_hashtag_name_alter_user_localname.py index 4fe41ec357..859cd50595 100644 --- a/bookwyrm/migrations/0201_alter_hashtag_name_alter_user_localname.py +++ b/bookwyrm/migrations/0201_alter_hashtag_name_alter_user_localname.py @@ -6,7 +6,6 @@ class Migration(migrations.Migration): - dependencies = [ ("bookwyrm", "0200_alter_user_preferred_timezone"), ] @@ -25,6 +24,16 @@ class Migration(migrations.Migration): db_collation="case_insensitive", max_length=256 ), ), + migrations.AlterField( + model_name="user", + name="localname", + field=models.CharField( + max_length=255, + null=True, + unique=False, + validators=[bookwyrm.models.fields.validate_localname], + ), + ), migrations.AlterField( model_name="user", name="localname", diff --git a/bookwyrm/migrations/0207_merge_20240629_0626.py b/bookwyrm/migrations/0207_merge_20240629_0626.py new file mode 100644 index 0000000000..b5a1a45560 --- /dev/null +++ b/bookwyrm/migrations/0207_merge_20240629_0626.py @@ -0,0 +1,13 @@ +# Generated by Django 4.2.11 on 2024-06-29 06:26 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0189_importjob_create_shelves"), + ("bookwyrm", "0206_merge_20240415_1537"), + ] + + operations = [] diff --git a/bookwyrm/migrations/0207_sqlparse_update.py b/bookwyrm/migrations/0207_sqlparse_update.py new file mode 100644 index 0000000000..95c46eba2f --- /dev/null +++ b/bookwyrm/migrations/0207_sqlparse_update.py @@ -0,0 +1,51 @@ +# Generated by Django 4.2.11 on 2024-07-27 18:18 + +from django.db import migrations, models +import pgtrigger.compiler +import pgtrigger.migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0206_merge_20240415_1537"), + ] + + operations = [ + pgtrigger.migrations.RemoveTrigger( + model_name="author", + name="reset_book_search_vector_on_author_edit", + ), + pgtrigger.migrations.RemoveTrigger( + model_name="book", + name="update_search_vector_on_book_edit", + ), + pgtrigger.migrations.AddTrigger( + model_name="author", + trigger=pgtrigger.compiler.Trigger( + name="reset_book_search_vector_on_author_edit", + sql=pgtrigger.compiler.UpsertTriggerSql( + func="WITH updated_books AS (SELECT book_id FROM bookwyrm_book_authors WHERE author_id = new.id) UPDATE bookwyrm_book SET search_vector = '' FROM updated_books WHERE id = updated_books.book_id;RETURN NEW;", + hash="4eeb17d1c9c53f543615bcae1234bd0260adefcc", + operation='UPDATE OF "name", "aliases"', + pgid="pgtrigger_reset_book_search_vector_on_author_edit_a50c7", + table="bookwyrm_author", + when="AFTER", + ), + ), + ), + pgtrigger.migrations.AddTrigger( + model_name="book", + trigger=pgtrigger.compiler.Trigger( + name="update_search_vector_on_book_edit", + sql=pgtrigger.compiler.UpsertTriggerSql( + func="WITH author_names AS (SELECT array_to_string(bookwyrm_author.name || bookwyrm_author.aliases, ' ') AS name_and_aliases FROM bookwyrm_author LEFT JOIN bookwyrm_book_authors ON bookwyrm_author.id = bookwyrm_book_authors.author_id WHERE bookwyrm_book_authors.book_id = new.id) SELECT setweight(coalesce(nullif(to_tsvector('english', new.title), ''), to_tsvector('simple', new.title)), 'A') || setweight(to_tsvector('english', coalesce(new.subtitle, '')), 'B') || (SELECT setweight(to_tsvector('simple', coalesce(array_to_string(array_agg(name_and_aliases), ' '), '')), 'C') FROM author_names) || setweight(to_tsvector('english', coalesce(new.series, '')), 'D') INTO new.search_vector;RETURN NEW;", + hash="676d929ce95beff671544b6add09cf9360b6f299", + operation='INSERT OR UPDATE OF "title", "subtitle", "series", "search_vector"', + pgid="pgtrigger_update_search_vector_on_book_edit_bec58", + table="bookwyrm_book", + when="BEFORE", + ), + ), + ), + ] diff --git a/bookwyrm/migrations/0208_merge_0207_merge_20240629_0626_0207_sqlparse_update.py b/bookwyrm/migrations/0208_merge_0207_merge_20240629_0626_0207_sqlparse_update.py new file mode 100644 index 0000000000..24ef28e047 --- /dev/null +++ b/bookwyrm/migrations/0208_merge_0207_merge_20240629_0626_0207_sqlparse_update.py @@ -0,0 +1,13 @@ +# Generated by Django 4.2.11 on 2024-07-28 11:07 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0207_merge_20240629_0626"), + ("bookwyrm", "0207_sqlparse_update"), + ] + + operations = [] diff --git a/bookwyrm/migrations/0209_user_show_ratings.py b/bookwyrm/migrations/0209_user_show_ratings.py new file mode 100644 index 0000000000..94e074407e --- /dev/null +++ b/bookwyrm/migrations/0209_user_show_ratings.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.15 on 2024-08-24 01:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0208_merge_0207_merge_20240629_0626_0207_sqlparse_update"), + ] + + operations = [ + migrations.AddField( + model_name="user", + name="show_ratings", + field=models.BooleanField(default=True), + ), + ] diff --git a/bookwyrm/migrations/0210_alter_connector_connector_file.py b/bookwyrm/migrations/0210_alter_connector_connector_file.py new file mode 100644 index 0000000000..8811378d7d --- /dev/null +++ b/bookwyrm/migrations/0210_alter_connector_connector_file.py @@ -0,0 +1,26 @@ +# Generated by Django 4.2.17 on 2025-02-02 20:22 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0209_user_show_ratings"), + ] + + operations = [ + migrations.AlterField( + model_name="connector", + name="connector_file", + field=models.CharField( + choices=[ + ("openlibrary", "Openlibrary"), + ("inventaire", "Inventaire"), + ("bookwyrm_connector", "Bookwyrm Connector"), + ("finna", "Finna"), + ], + max_length=255, + ), + ), + ] diff --git a/bookwyrm/migrations/0211_author_finna_key_book_finna_key.py b/bookwyrm/migrations/0211_author_finna_key_book_finna_key.py new file mode 100644 index 0000000000..78483345d5 --- /dev/null +++ b/bookwyrm/migrations/0211_author_finna_key_book_finna_key.py @@ -0,0 +1,28 @@ +# Generated by Django 4.2.17 on 2025-02-08 16:14 + +import bookwyrm.models.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0210_alter_connector_connector_file"), + ] + + operations = [ + migrations.AddField( + model_name="author", + name="finna_key", + field=bookwyrm.models.fields.CharField( + blank=True, max_length=255, null=True + ), + ), + migrations.AddField( + model_name="book", + name="finna_key", + field=bookwyrm.models.fields.CharField( + blank=True, max_length=255, null=True + ), + ), + ] diff --git a/bookwyrm/migrations/0212_userrelationshipimport_and_more.py b/bookwyrm/migrations/0212_userrelationshipimport_and_more.py new file mode 100644 index 0000000000..ef088057f2 --- /dev/null +++ b/bookwyrm/migrations/0212_userrelationshipimport_and_more.py @@ -0,0 +1,151 @@ +# Generated by Django 4.2.20 on 2025-03-28 07:37 + +import bookwyrm.models.fields +import django.contrib.postgres.fields +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0211_author_finna_key_book_finna_key"), + ] + + operations = [ + migrations.CreateModel( + name="UserRelationshipImport", + fields=[ + ( + "childjob_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="bookwyrm.childjob", + ), + ), + ( + "relationship", + bookwyrm.models.fields.CharField( + choices=[("follow", "Follow"), ("block", "Block")], + max_length=10, + null=True, + ), + ), + ( + "remote_id", + bookwyrm.models.fields.RemoteIdField( + max_length=255, + null=True, + validators=[bookwyrm.models.fields.validate_remote_id], + ), + ), + ], + options={ + "abstract": False, + }, + bases=("bookwyrm.childjob",), + ), + migrations.RemoveField( + model_name="bookwyrmexportjob", + name="json_completed", + ), + migrations.AddField( + model_name="bookwyrmimportjob", + name="retry", + field=models.BooleanField(default=False), + ), + migrations.AddField( + model_name="childjob", + name="fail_reason", + field=models.TextField(null=True), + ), + migrations.AddField( + model_name="parentjob", + name="fail_reason", + field=models.TextField(null=True), + ), + migrations.AlterField( + model_name="bookwyrmimportjob", + name="required", + field=django.contrib.postgres.fields.ArrayField( + base_field=bookwyrm.models.fields.CharField(blank=True, max_length=50), + blank=True, + size=None, + ), + ), + migrations.CreateModel( + name="UserImportPost", + fields=[ + ( + "childjob_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="bookwyrm.childjob", + ), + ), + ("json", models.JSONField()), + ( + "status_type", + bookwyrm.models.fields.CharField( + choices=[ + ("comment", "Comment"), + ("review", "Review"), + ("quote", "Quotation"), + ], + default="comment", + max_length=10, + null=True, + ), + ), + ( + "book", + bookwyrm.models.fields.ForeignKey( + on_delete=django.db.models.deletion.PROTECT, + to="bookwyrm.edition", + ), + ), + ], + options={ + "abstract": False, + }, + bases=("bookwyrm.childjob",), + ), + migrations.CreateModel( + name="UserImportBook", + fields=[ + ( + "childjob_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="bookwyrm.childjob", + ), + ), + ("book_data", models.JSONField()), + ( + "book", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="bookwyrm.book", + ), + ), + ], + options={ + "abstract": False, + }, + bases=("bookwyrm.childjob",), + ), + ] diff --git a/bookwyrm/migrations/0213_alter_user_preferred_timezone.py b/bookwyrm/migrations/0213_alter_user_preferred_timezone.py new file mode 100644 index 0000000000..93048c1067 --- /dev/null +++ b/bookwyrm/migrations/0213_alter_user_preferred_timezone.py @@ -0,0 +1,634 @@ +# Generated by Django 4.2.20 on 2025-03-31 15:31 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0212_userrelationshipimport_and_more"), + ] + + operations = [ + migrations.AlterField( + model_name="user", + name="preferred_timezone", + field=models.CharField( + choices=[ + ("Africa/Abidjan", "Africa/Abidjan"), + ("Africa/Accra", "Africa/Accra"), + ("Africa/Addis_Ababa", "Africa/Addis_Ababa"), + ("Africa/Algiers", "Africa/Algiers"), + ("Africa/Asmara", "Africa/Asmara"), + ("Africa/Asmera", "Africa/Asmera"), + ("Africa/Bamako", "Africa/Bamako"), + ("Africa/Bangui", "Africa/Bangui"), + ("Africa/Banjul", "Africa/Banjul"), + ("Africa/Bissau", "Africa/Bissau"), + ("Africa/Blantyre", "Africa/Blantyre"), + ("Africa/Brazzaville", "Africa/Brazzaville"), + ("Africa/Bujumbura", "Africa/Bujumbura"), + ("Africa/Cairo", "Africa/Cairo"), + ("Africa/Casablanca", "Africa/Casablanca"), + ("Africa/Ceuta", "Africa/Ceuta"), + ("Africa/Conakry", "Africa/Conakry"), + ("Africa/Dakar", "Africa/Dakar"), + ("Africa/Dar_es_Salaam", "Africa/Dar_es_Salaam"), + ("Africa/Djibouti", "Africa/Djibouti"), + ("Africa/Douala", "Africa/Douala"), + ("Africa/El_Aaiun", "Africa/El_Aaiun"), + ("Africa/Freetown", "Africa/Freetown"), + ("Africa/Gaborone", "Africa/Gaborone"), + ("Africa/Harare", "Africa/Harare"), + ("Africa/Johannesburg", "Africa/Johannesburg"), + ("Africa/Juba", "Africa/Juba"), + ("Africa/Kampala", "Africa/Kampala"), + ("Africa/Khartoum", "Africa/Khartoum"), + ("Africa/Kigali", "Africa/Kigali"), + ("Africa/Kinshasa", "Africa/Kinshasa"), + ("Africa/Lagos", "Africa/Lagos"), + ("Africa/Libreville", "Africa/Libreville"), + ("Africa/Lome", "Africa/Lome"), + ("Africa/Luanda", "Africa/Luanda"), + ("Africa/Lubumbashi", "Africa/Lubumbashi"), + ("Africa/Lusaka", "Africa/Lusaka"), + ("Africa/Malabo", "Africa/Malabo"), + ("Africa/Maputo", "Africa/Maputo"), + ("Africa/Maseru", "Africa/Maseru"), + ("Africa/Mbabane", "Africa/Mbabane"), + ("Africa/Mogadishu", "Africa/Mogadishu"), + ("Africa/Monrovia", "Africa/Monrovia"), + ("Africa/Nairobi", "Africa/Nairobi"), + ("Africa/Ndjamena", "Africa/Ndjamena"), + ("Africa/Niamey", "Africa/Niamey"), + ("Africa/Nouakchott", "Africa/Nouakchott"), + ("Africa/Ouagadougou", "Africa/Ouagadougou"), + ("Africa/Porto-Novo", "Africa/Porto-Novo"), + ("Africa/Sao_Tome", "Africa/Sao_Tome"), + ("Africa/Timbuktu", "Africa/Timbuktu"), + ("Africa/Tripoli", "Africa/Tripoli"), + ("Africa/Tunis", "Africa/Tunis"), + ("Africa/Windhoek", "Africa/Windhoek"), + ("America/Adak", "America/Adak"), + ("America/Anchorage", "America/Anchorage"), + ("America/Anguilla", "America/Anguilla"), + ("America/Antigua", "America/Antigua"), + ("America/Araguaina", "America/Araguaina"), + ( + "America/Argentina/Buenos_Aires", + "America/Argentina/Buenos_Aires", + ), + ("America/Argentina/Catamarca", "America/Argentina/Catamarca"), + ( + "America/Argentina/ComodRivadavia", + "America/Argentina/ComodRivadavia", + ), + ("America/Argentina/Cordoba", "America/Argentina/Cordoba"), + ("America/Argentina/Jujuy", "America/Argentina/Jujuy"), + ("America/Argentina/La_Rioja", "America/Argentina/La_Rioja"), + ("America/Argentina/Mendoza", "America/Argentina/Mendoza"), + ( + "America/Argentina/Rio_Gallegos", + "America/Argentina/Rio_Gallegos", + ), + ("America/Argentina/Salta", "America/Argentina/Salta"), + ("America/Argentina/San_Juan", "America/Argentina/San_Juan"), + ("America/Argentina/San_Luis", "America/Argentina/San_Luis"), + ("America/Argentina/Tucuman", "America/Argentina/Tucuman"), + ("America/Argentina/Ushuaia", "America/Argentina/Ushuaia"), + ("America/Aruba", "America/Aruba"), + ("America/Asuncion", "America/Asuncion"), + ("America/Atikokan", "America/Atikokan"), + ("America/Atka", "America/Atka"), + ("America/Bahia", "America/Bahia"), + ("America/Bahia_Banderas", "America/Bahia_Banderas"), + ("America/Barbados", "America/Barbados"), + ("America/Belem", "America/Belem"), + ("America/Belize", "America/Belize"), + ("America/Blanc-Sablon", "America/Blanc-Sablon"), + ("America/Boa_Vista", "America/Boa_Vista"), + ("America/Bogota", "America/Bogota"), + ("America/Boise", "America/Boise"), + ("America/Buenos_Aires", "America/Buenos_Aires"), + ("America/Cambridge_Bay", "America/Cambridge_Bay"), + ("America/Campo_Grande", "America/Campo_Grande"), + ("America/Cancun", "America/Cancun"), + ("America/Caracas", "America/Caracas"), + ("America/Catamarca", "America/Catamarca"), + ("America/Cayenne", "America/Cayenne"), + ("America/Cayman", "America/Cayman"), + ("America/Chicago", "America/Chicago"), + ("America/Chihuahua", "America/Chihuahua"), + ("America/Ciudad_Juarez", "America/Ciudad_Juarez"), + ("America/Coral_Harbour", "America/Coral_Harbour"), + ("America/Cordoba", "America/Cordoba"), + ("America/Costa_Rica", "America/Costa_Rica"), + ("America/Coyhaique", "America/Coyhaique"), + ("America/Creston", "America/Creston"), + ("America/Cuiaba", "America/Cuiaba"), + ("America/Curacao", "America/Curacao"), + ("America/Danmarkshavn", "America/Danmarkshavn"), + ("America/Dawson", "America/Dawson"), + ("America/Dawson_Creek", "America/Dawson_Creek"), + ("America/Denver", "America/Denver"), + ("America/Detroit", "America/Detroit"), + ("America/Dominica", "America/Dominica"), + ("America/Edmonton", "America/Edmonton"), + ("America/Eirunepe", "America/Eirunepe"), + ("America/El_Salvador", "America/El_Salvador"), + ("America/Ensenada", "America/Ensenada"), + ("America/Fort_Nelson", "America/Fort_Nelson"), + ("America/Fort_Wayne", "America/Fort_Wayne"), + ("America/Fortaleza", "America/Fortaleza"), + ("America/Glace_Bay", "America/Glace_Bay"), + ("America/Godthab", "America/Godthab"), + ("America/Goose_Bay", "America/Goose_Bay"), + ("America/Grand_Turk", "America/Grand_Turk"), + ("America/Grenada", "America/Grenada"), + ("America/Guadeloupe", "America/Guadeloupe"), + ("America/Guatemala", "America/Guatemala"), + ("America/Guayaquil", "America/Guayaquil"), + ("America/Guyana", "America/Guyana"), + ("America/Halifax", "America/Halifax"), + ("America/Havana", "America/Havana"), + ("America/Hermosillo", "America/Hermosillo"), + ("America/Indiana/Indianapolis", "America/Indiana/Indianapolis"), + ("America/Indiana/Knox", "America/Indiana/Knox"), + ("America/Indiana/Marengo", "America/Indiana/Marengo"), + ("America/Indiana/Petersburg", "America/Indiana/Petersburg"), + ("America/Indiana/Tell_City", "America/Indiana/Tell_City"), + ("America/Indiana/Vevay", "America/Indiana/Vevay"), + ("America/Indiana/Vincennes", "America/Indiana/Vincennes"), + ("America/Indiana/Winamac", "America/Indiana/Winamac"), + ("America/Indianapolis", "America/Indianapolis"), + ("America/Inuvik", "America/Inuvik"), + ("America/Iqaluit", "America/Iqaluit"), + ("America/Jamaica", "America/Jamaica"), + ("America/Jujuy", "America/Jujuy"), + ("America/Juneau", "America/Juneau"), + ("America/Kentucky/Louisville", "America/Kentucky/Louisville"), + ("America/Kentucky/Monticello", "America/Kentucky/Monticello"), + ("America/Knox_IN", "America/Knox_IN"), + ("America/Kralendijk", "America/Kralendijk"), + ("America/La_Paz", "America/La_Paz"), + ("America/Lima", "America/Lima"), + ("America/Los_Angeles", "America/Los_Angeles"), + ("America/Louisville", "America/Louisville"), + ("America/Lower_Princes", "America/Lower_Princes"), + ("America/Maceio", "America/Maceio"), + ("America/Managua", "America/Managua"), + ("America/Manaus", "America/Manaus"), + ("America/Marigot", "America/Marigot"), + ("America/Martinique", "America/Martinique"), + ("America/Matamoros", "America/Matamoros"), + ("America/Mazatlan", "America/Mazatlan"), + ("America/Mendoza", "America/Mendoza"), + ("America/Menominee", "America/Menominee"), + ("America/Merida", "America/Merida"), + ("America/Metlakatla", "America/Metlakatla"), + ("America/Mexico_City", "America/Mexico_City"), + ("America/Miquelon", "America/Miquelon"), + ("America/Moncton", "America/Moncton"), + ("America/Monterrey", "America/Monterrey"), + ("America/Montevideo", "America/Montevideo"), + ("America/Montreal", "America/Montreal"), + ("America/Montserrat", "America/Montserrat"), + ("America/Nassau", "America/Nassau"), + ("America/New_York", "America/New_York"), + ("America/Nipigon", "America/Nipigon"), + ("America/Nome", "America/Nome"), + ("America/Noronha", "America/Noronha"), + ("America/North_Dakota/Beulah", "America/North_Dakota/Beulah"), + ("America/North_Dakota/Center", "America/North_Dakota/Center"), + ( + "America/North_Dakota/New_Salem", + "America/North_Dakota/New_Salem", + ), + ("America/Nuuk", "America/Nuuk"), + ("America/Ojinaga", "America/Ojinaga"), + ("America/Panama", "America/Panama"), + ("America/Pangnirtung", "America/Pangnirtung"), + ("America/Paramaribo", "America/Paramaribo"), + ("America/Phoenix", "America/Phoenix"), + ("America/Port-au-Prince", "America/Port-au-Prince"), + ("America/Port_of_Spain", "America/Port_of_Spain"), + ("America/Porto_Acre", "America/Porto_Acre"), + ("America/Porto_Velho", "America/Porto_Velho"), + ("America/Puerto_Rico", "America/Puerto_Rico"), + ("America/Punta_Arenas", "America/Punta_Arenas"), + ("America/Rainy_River", "America/Rainy_River"), + ("America/Rankin_Inlet", "America/Rankin_Inlet"), + ("America/Recife", "America/Recife"), + ("America/Regina", "America/Regina"), + ("America/Resolute", "America/Resolute"), + ("America/Rio_Branco", "America/Rio_Branco"), + ("America/Rosario", "America/Rosario"), + ("America/Santa_Isabel", "America/Santa_Isabel"), + ("America/Santarem", "America/Santarem"), + ("America/Santiago", "America/Santiago"), + ("America/Santo_Domingo", "America/Santo_Domingo"), + ("America/Sao_Paulo", "America/Sao_Paulo"), + ("America/Scoresbysund", "America/Scoresbysund"), + ("America/Shiprock", "America/Shiprock"), + ("America/Sitka", "America/Sitka"), + ("America/St_Barthelemy", "America/St_Barthelemy"), + ("America/St_Johns", "America/St_Johns"), + ("America/St_Kitts", "America/St_Kitts"), + ("America/St_Lucia", "America/St_Lucia"), + ("America/St_Thomas", "America/St_Thomas"), + ("America/St_Vincent", "America/St_Vincent"), + ("America/Swift_Current", "America/Swift_Current"), + ("America/Tegucigalpa", "America/Tegucigalpa"), + ("America/Thule", "America/Thule"), + ("America/Thunder_Bay", "America/Thunder_Bay"), + ("America/Tijuana", "America/Tijuana"), + ("America/Toronto", "America/Toronto"), + ("America/Tortola", "America/Tortola"), + ("America/Vancouver", "America/Vancouver"), + ("America/Virgin", "America/Virgin"), + ("America/Whitehorse", "America/Whitehorse"), + ("America/Winnipeg", "America/Winnipeg"), + ("America/Yakutat", "America/Yakutat"), + ("America/Yellowknife", "America/Yellowknife"), + ("Antarctica/Casey", "Antarctica/Casey"), + ("Antarctica/Davis", "Antarctica/Davis"), + ("Antarctica/DumontDUrville", "Antarctica/DumontDUrville"), + ("Antarctica/Macquarie", "Antarctica/Macquarie"), + ("Antarctica/Mawson", "Antarctica/Mawson"), + ("Antarctica/McMurdo", "Antarctica/McMurdo"), + ("Antarctica/Palmer", "Antarctica/Palmer"), + ("Antarctica/Rothera", "Antarctica/Rothera"), + ("Antarctica/South_Pole", "Antarctica/South_Pole"), + ("Antarctica/Syowa", "Antarctica/Syowa"), + ("Antarctica/Troll", "Antarctica/Troll"), + ("Antarctica/Vostok", "Antarctica/Vostok"), + ("Arctic/Longyearbyen", "Arctic/Longyearbyen"), + ("Asia/Aden", "Asia/Aden"), + ("Asia/Almaty", "Asia/Almaty"), + ("Asia/Amman", "Asia/Amman"), + ("Asia/Anadyr", "Asia/Anadyr"), + ("Asia/Aqtau", "Asia/Aqtau"), + ("Asia/Aqtobe", "Asia/Aqtobe"), + ("Asia/Ashgabat", "Asia/Ashgabat"), + ("Asia/Ashkhabad", "Asia/Ashkhabad"), + ("Asia/Atyrau", "Asia/Atyrau"), + ("Asia/Baghdad", "Asia/Baghdad"), + ("Asia/Bahrain", "Asia/Bahrain"), + ("Asia/Baku", "Asia/Baku"), + ("Asia/Bangkok", "Asia/Bangkok"), + ("Asia/Barnaul", "Asia/Barnaul"), + ("Asia/Beirut", "Asia/Beirut"), + ("Asia/Bishkek", "Asia/Bishkek"), + ("Asia/Brunei", "Asia/Brunei"), + ("Asia/Calcutta", "Asia/Calcutta"), + ("Asia/Chita", "Asia/Chita"), + ("Asia/Choibalsan", "Asia/Choibalsan"), + ("Asia/Chongqing", "Asia/Chongqing"), + ("Asia/Chungking", "Asia/Chungking"), + ("Asia/Colombo", "Asia/Colombo"), + ("Asia/Dacca", "Asia/Dacca"), + ("Asia/Damascus", "Asia/Damascus"), + ("Asia/Dhaka", "Asia/Dhaka"), + ("Asia/Dili", "Asia/Dili"), + ("Asia/Dubai", "Asia/Dubai"), + ("Asia/Dushanbe", "Asia/Dushanbe"), + ("Asia/Famagusta", "Asia/Famagusta"), + ("Asia/Gaza", "Asia/Gaza"), + ("Asia/Harbin", "Asia/Harbin"), + ("Asia/Hebron", "Asia/Hebron"), + ("Asia/Ho_Chi_Minh", "Asia/Ho_Chi_Minh"), + ("Asia/Hong_Kong", "Asia/Hong_Kong"), + ("Asia/Hovd", "Asia/Hovd"), + ("Asia/Irkutsk", "Asia/Irkutsk"), + ("Asia/Istanbul", "Asia/Istanbul"), + ("Asia/Jakarta", "Asia/Jakarta"), + ("Asia/Jayapura", "Asia/Jayapura"), + ("Asia/Jerusalem", "Asia/Jerusalem"), + ("Asia/Kabul", "Asia/Kabul"), + ("Asia/Kamchatka", "Asia/Kamchatka"), + ("Asia/Karachi", "Asia/Karachi"), + ("Asia/Kashgar", "Asia/Kashgar"), + ("Asia/Kathmandu", "Asia/Kathmandu"), + ("Asia/Katmandu", "Asia/Katmandu"), + ("Asia/Khandyga", "Asia/Khandyga"), + ("Asia/Kolkata", "Asia/Kolkata"), + ("Asia/Krasnoyarsk", "Asia/Krasnoyarsk"), + ("Asia/Kuala_Lumpur", "Asia/Kuala_Lumpur"), + ("Asia/Kuching", "Asia/Kuching"), + ("Asia/Kuwait", "Asia/Kuwait"), + ("Asia/Macao", "Asia/Macao"), + ("Asia/Macau", "Asia/Macau"), + ("Asia/Magadan", "Asia/Magadan"), + ("Asia/Makassar", "Asia/Makassar"), + ("Asia/Manila", "Asia/Manila"), + ("Asia/Muscat", "Asia/Muscat"), + ("Asia/Nicosia", "Asia/Nicosia"), + ("Asia/Novokuznetsk", "Asia/Novokuznetsk"), + ("Asia/Novosibirsk", "Asia/Novosibirsk"), + ("Asia/Omsk", "Asia/Omsk"), + ("Asia/Oral", "Asia/Oral"), + ("Asia/Phnom_Penh", "Asia/Phnom_Penh"), + ("Asia/Pontianak", "Asia/Pontianak"), + ("Asia/Pyongyang", "Asia/Pyongyang"), + ("Asia/Qatar", "Asia/Qatar"), + ("Asia/Qostanay", "Asia/Qostanay"), + ("Asia/Qyzylorda", "Asia/Qyzylorda"), + ("Asia/Rangoon", "Asia/Rangoon"), + ("Asia/Riyadh", "Asia/Riyadh"), + ("Asia/Saigon", "Asia/Saigon"), + ("Asia/Sakhalin", "Asia/Sakhalin"), + ("Asia/Samarkand", "Asia/Samarkand"), + ("Asia/Seoul", "Asia/Seoul"), + ("Asia/Shanghai", "Asia/Shanghai"), + ("Asia/Singapore", "Asia/Singapore"), + ("Asia/Srednekolymsk", "Asia/Srednekolymsk"), + ("Asia/Taipei", "Asia/Taipei"), + ("Asia/Tashkent", "Asia/Tashkent"), + ("Asia/Tbilisi", "Asia/Tbilisi"), + ("Asia/Tehran", "Asia/Tehran"), + ("Asia/Tel_Aviv", "Asia/Tel_Aviv"), + ("Asia/Thimbu", "Asia/Thimbu"), + ("Asia/Thimphu", "Asia/Thimphu"), + ("Asia/Tokyo", "Asia/Tokyo"), + ("Asia/Tomsk", "Asia/Tomsk"), + ("Asia/Ujung_Pandang", "Asia/Ujung_Pandang"), + ("Asia/Ulaanbaatar", "Asia/Ulaanbaatar"), + ("Asia/Ulan_Bator", "Asia/Ulan_Bator"), + ("Asia/Urumqi", "Asia/Urumqi"), + ("Asia/Ust-Nera", "Asia/Ust-Nera"), + ("Asia/Vientiane", "Asia/Vientiane"), + ("Asia/Vladivostok", "Asia/Vladivostok"), + ("Asia/Yakutsk", "Asia/Yakutsk"), + ("Asia/Yangon", "Asia/Yangon"), + ("Asia/Yekaterinburg", "Asia/Yekaterinburg"), + ("Asia/Yerevan", "Asia/Yerevan"), + ("Atlantic/Azores", "Atlantic/Azores"), + ("Atlantic/Bermuda", "Atlantic/Bermuda"), + ("Atlantic/Canary", "Atlantic/Canary"), + ("Atlantic/Cape_Verde", "Atlantic/Cape_Verde"), + ("Atlantic/Faeroe", "Atlantic/Faeroe"), + ("Atlantic/Faroe", "Atlantic/Faroe"), + ("Atlantic/Jan_Mayen", "Atlantic/Jan_Mayen"), + ("Atlantic/Madeira", "Atlantic/Madeira"), + ("Atlantic/Reykjavik", "Atlantic/Reykjavik"), + ("Atlantic/South_Georgia", "Atlantic/South_Georgia"), + ("Atlantic/St_Helena", "Atlantic/St_Helena"), + ("Atlantic/Stanley", "Atlantic/Stanley"), + ("Australia/ACT", "Australia/ACT"), + ("Australia/Adelaide", "Australia/Adelaide"), + ("Australia/Brisbane", "Australia/Brisbane"), + ("Australia/Broken_Hill", "Australia/Broken_Hill"), + ("Australia/Canberra", "Australia/Canberra"), + ("Australia/Currie", "Australia/Currie"), + ("Australia/Darwin", "Australia/Darwin"), + ("Australia/Eucla", "Australia/Eucla"), + ("Australia/Hobart", "Australia/Hobart"), + ("Australia/LHI", "Australia/LHI"), + ("Australia/Lindeman", "Australia/Lindeman"), + ("Australia/Lord_Howe", "Australia/Lord_Howe"), + ("Australia/Melbourne", "Australia/Melbourne"), + ("Australia/NSW", "Australia/NSW"), + ("Australia/North", "Australia/North"), + ("Australia/Perth", "Australia/Perth"), + ("Australia/Queensland", "Australia/Queensland"), + ("Australia/South", "Australia/South"), + ("Australia/Sydney", "Australia/Sydney"), + ("Australia/Tasmania", "Australia/Tasmania"), + ("Australia/Victoria", "Australia/Victoria"), + ("Australia/West", "Australia/West"), + ("Australia/Yancowinna", "Australia/Yancowinna"), + ("Brazil/Acre", "Brazil/Acre"), + ("Brazil/DeNoronha", "Brazil/DeNoronha"), + ("Brazil/East", "Brazil/East"), + ("Brazil/West", "Brazil/West"), + ("CET", "CET"), + ("CST6CDT", "CST6CDT"), + ("Canada/Atlantic", "Canada/Atlantic"), + ("Canada/Central", "Canada/Central"), + ("Canada/Eastern", "Canada/Eastern"), + ("Canada/Mountain", "Canada/Mountain"), + ("Canada/Newfoundland", "Canada/Newfoundland"), + ("Canada/Pacific", "Canada/Pacific"), + ("Canada/Saskatchewan", "Canada/Saskatchewan"), + ("Canada/Yukon", "Canada/Yukon"), + ("Chile/Continental", "Chile/Continental"), + ("Chile/EasterIsland", "Chile/EasterIsland"), + ("Cuba", "Cuba"), + ("EET", "EET"), + ("EST", "EST"), + ("EST5EDT", "EST5EDT"), + ("Egypt", "Egypt"), + ("Eire", "Eire"), + ("Etc/GMT", "Etc/GMT"), + ("Etc/GMT+0", "Etc/GMT+0"), + ("Etc/GMT+1", "Etc/GMT+1"), + ("Etc/GMT+10", "Etc/GMT+10"), + ("Etc/GMT+11", "Etc/GMT+11"), + ("Etc/GMT+12", "Etc/GMT+12"), + ("Etc/GMT+2", "Etc/GMT+2"), + ("Etc/GMT+3", "Etc/GMT+3"), + ("Etc/GMT+4", "Etc/GMT+4"), + ("Etc/GMT+5", "Etc/GMT+5"), + ("Etc/GMT+6", "Etc/GMT+6"), + ("Etc/GMT+7", "Etc/GMT+7"), + ("Etc/GMT+8", "Etc/GMT+8"), + ("Etc/GMT+9", "Etc/GMT+9"), + ("Etc/GMT-0", "Etc/GMT-0"), + ("Etc/GMT-1", "Etc/GMT-1"), + ("Etc/GMT-10", "Etc/GMT-10"), + ("Etc/GMT-11", "Etc/GMT-11"), + ("Etc/GMT-12", "Etc/GMT-12"), + ("Etc/GMT-13", "Etc/GMT-13"), + ("Etc/GMT-14", "Etc/GMT-14"), + ("Etc/GMT-2", "Etc/GMT-2"), + ("Etc/GMT-3", "Etc/GMT-3"), + ("Etc/GMT-4", "Etc/GMT-4"), + ("Etc/GMT-5", "Etc/GMT-5"), + ("Etc/GMT-6", "Etc/GMT-6"), + ("Etc/GMT-7", "Etc/GMT-7"), + ("Etc/GMT-8", "Etc/GMT-8"), + ("Etc/GMT-9", "Etc/GMT-9"), + ("Etc/GMT0", "Etc/GMT0"), + ("Etc/Greenwich", "Etc/Greenwich"), + ("Etc/UCT", "Etc/UCT"), + ("Etc/UTC", "Etc/UTC"), + ("Etc/Universal", "Etc/Universal"), + ("Etc/Zulu", "Etc/Zulu"), + ("Europe/Amsterdam", "Europe/Amsterdam"), + ("Europe/Andorra", "Europe/Andorra"), + ("Europe/Astrakhan", "Europe/Astrakhan"), + ("Europe/Athens", "Europe/Athens"), + ("Europe/Belfast", "Europe/Belfast"), + ("Europe/Belgrade", "Europe/Belgrade"), + ("Europe/Berlin", "Europe/Berlin"), + ("Europe/Bratislava", "Europe/Bratislava"), + ("Europe/Brussels", "Europe/Brussels"), + ("Europe/Bucharest", "Europe/Bucharest"), + ("Europe/Budapest", "Europe/Budapest"), + ("Europe/Busingen", "Europe/Busingen"), + ("Europe/Chisinau", "Europe/Chisinau"), + ("Europe/Copenhagen", "Europe/Copenhagen"), + ("Europe/Dublin", "Europe/Dublin"), + ("Europe/Gibraltar", "Europe/Gibraltar"), + ("Europe/Guernsey", "Europe/Guernsey"), + ("Europe/Helsinki", "Europe/Helsinki"), + ("Europe/Isle_of_Man", "Europe/Isle_of_Man"), + ("Europe/Istanbul", "Europe/Istanbul"), + ("Europe/Jersey", "Europe/Jersey"), + ("Europe/Kaliningrad", "Europe/Kaliningrad"), + ("Europe/Kiev", "Europe/Kiev"), + ("Europe/Kirov", "Europe/Kirov"), + ("Europe/Kyiv", "Europe/Kyiv"), + ("Europe/Lisbon", "Europe/Lisbon"), + ("Europe/Ljubljana", "Europe/Ljubljana"), + ("Europe/London", "Europe/London"), + ("Europe/Luxembourg", "Europe/Luxembourg"), + ("Europe/Madrid", "Europe/Madrid"), + ("Europe/Malta", "Europe/Malta"), + ("Europe/Mariehamn", "Europe/Mariehamn"), + ("Europe/Minsk", "Europe/Minsk"), + ("Europe/Monaco", "Europe/Monaco"), + ("Europe/Moscow", "Europe/Moscow"), + ("Europe/Nicosia", "Europe/Nicosia"), + ("Europe/Oslo", "Europe/Oslo"), + ("Europe/Paris", "Europe/Paris"), + ("Europe/Podgorica", "Europe/Podgorica"), + ("Europe/Prague", "Europe/Prague"), + ("Europe/Riga", "Europe/Riga"), + ("Europe/Rome", "Europe/Rome"), + ("Europe/Samara", "Europe/Samara"), + ("Europe/San_Marino", "Europe/San_Marino"), + ("Europe/Sarajevo", "Europe/Sarajevo"), + ("Europe/Saratov", "Europe/Saratov"), + ("Europe/Simferopol", "Europe/Simferopol"), + ("Europe/Skopje", "Europe/Skopje"), + ("Europe/Sofia", "Europe/Sofia"), + ("Europe/Stockholm", "Europe/Stockholm"), + ("Europe/Tallinn", "Europe/Tallinn"), + ("Europe/Tirane", "Europe/Tirane"), + ("Europe/Tiraspol", "Europe/Tiraspol"), + ("Europe/Ulyanovsk", "Europe/Ulyanovsk"), + ("Europe/Uzhgorod", "Europe/Uzhgorod"), + ("Europe/Vaduz", "Europe/Vaduz"), + ("Europe/Vatican", "Europe/Vatican"), + ("Europe/Vienna", "Europe/Vienna"), + ("Europe/Vilnius", "Europe/Vilnius"), + ("Europe/Volgograd", "Europe/Volgograd"), + ("Europe/Warsaw", "Europe/Warsaw"), + ("Europe/Zagreb", "Europe/Zagreb"), + ("Europe/Zaporozhye", "Europe/Zaporozhye"), + ("Europe/Zurich", "Europe/Zurich"), + ("Factory", "Factory"), + ("GB", "GB"), + ("GB-Eire", "GB-Eire"), + ("GMT", "GMT"), + ("GMT+0", "GMT+0"), + ("GMT-0", "GMT-0"), + ("GMT0", "GMT0"), + ("Greenwich", "Greenwich"), + ("HST", "HST"), + ("Hongkong", "Hongkong"), + ("Iceland", "Iceland"), + ("Indian/Antananarivo", "Indian/Antananarivo"), + ("Indian/Chagos", "Indian/Chagos"), + ("Indian/Christmas", "Indian/Christmas"), + ("Indian/Cocos", "Indian/Cocos"), + ("Indian/Comoro", "Indian/Comoro"), + ("Indian/Kerguelen", "Indian/Kerguelen"), + ("Indian/Mahe", "Indian/Mahe"), + ("Indian/Maldives", "Indian/Maldives"), + ("Indian/Mauritius", "Indian/Mauritius"), + ("Indian/Mayotte", "Indian/Mayotte"), + ("Indian/Reunion", "Indian/Reunion"), + ("Iran", "Iran"), + ("Israel", "Israel"), + ("Jamaica", "Jamaica"), + ("Japan", "Japan"), + ("Kwajalein", "Kwajalein"), + ("Libya", "Libya"), + ("MET", "MET"), + ("MST", "MST"), + ("MST7MDT", "MST7MDT"), + ("Mexico/BajaNorte", "Mexico/BajaNorte"), + ("Mexico/BajaSur", "Mexico/BajaSur"), + ("Mexico/General", "Mexico/General"), + ("NZ", "NZ"), + ("NZ-CHAT", "NZ-CHAT"), + ("Navajo", "Navajo"), + ("PRC", "PRC"), + ("PST8PDT", "PST8PDT"), + ("Pacific/Apia", "Pacific/Apia"), + ("Pacific/Auckland", "Pacific/Auckland"), + ("Pacific/Bougainville", "Pacific/Bougainville"), + ("Pacific/Chatham", "Pacific/Chatham"), + ("Pacific/Chuuk", "Pacific/Chuuk"), + ("Pacific/Easter", "Pacific/Easter"), + ("Pacific/Efate", "Pacific/Efate"), + ("Pacific/Enderbury", "Pacific/Enderbury"), + ("Pacific/Fakaofo", "Pacific/Fakaofo"), + ("Pacific/Fiji", "Pacific/Fiji"), + ("Pacific/Funafuti", "Pacific/Funafuti"), + ("Pacific/Galapagos", "Pacific/Galapagos"), + ("Pacific/Gambier", "Pacific/Gambier"), + ("Pacific/Guadalcanal", "Pacific/Guadalcanal"), + ("Pacific/Guam", "Pacific/Guam"), + ("Pacific/Honolulu", "Pacific/Honolulu"), + ("Pacific/Johnston", "Pacific/Johnston"), + ("Pacific/Kanton", "Pacific/Kanton"), + ("Pacific/Kiritimati", "Pacific/Kiritimati"), + ("Pacific/Kosrae", "Pacific/Kosrae"), + ("Pacific/Kwajalein", "Pacific/Kwajalein"), + ("Pacific/Majuro", "Pacific/Majuro"), + ("Pacific/Marquesas", "Pacific/Marquesas"), + ("Pacific/Midway", "Pacific/Midway"), + ("Pacific/Nauru", "Pacific/Nauru"), + ("Pacific/Niue", "Pacific/Niue"), + ("Pacific/Norfolk", "Pacific/Norfolk"), + ("Pacific/Noumea", "Pacific/Noumea"), + ("Pacific/Pago_Pago", "Pacific/Pago_Pago"), + ("Pacific/Palau", "Pacific/Palau"), + ("Pacific/Pitcairn", "Pacific/Pitcairn"), + ("Pacific/Pohnpei", "Pacific/Pohnpei"), + ("Pacific/Ponape", "Pacific/Ponape"), + ("Pacific/Port_Moresby", "Pacific/Port_Moresby"), + ("Pacific/Rarotonga", "Pacific/Rarotonga"), + ("Pacific/Saipan", "Pacific/Saipan"), + ("Pacific/Samoa", "Pacific/Samoa"), + ("Pacific/Tahiti", "Pacific/Tahiti"), + ("Pacific/Tarawa", "Pacific/Tarawa"), + ("Pacific/Tongatapu", "Pacific/Tongatapu"), + ("Pacific/Truk", "Pacific/Truk"), + ("Pacific/Wake", "Pacific/Wake"), + ("Pacific/Wallis", "Pacific/Wallis"), + ("Pacific/Yap", "Pacific/Yap"), + ("Poland", "Poland"), + ("Portugal", "Portugal"), + ("ROC", "ROC"), + ("ROK", "ROK"), + ("Singapore", "Singapore"), + ("Turkey", "Turkey"), + ("UCT", "UCT"), + ("US/Alaska", "US/Alaska"), + ("US/Aleutian", "US/Aleutian"), + ("US/Arizona", "US/Arizona"), + ("US/Central", "US/Central"), + ("US/East-Indiana", "US/East-Indiana"), + ("US/Eastern", "US/Eastern"), + ("US/Hawaii", "US/Hawaii"), + ("US/Indiana-Starke", "US/Indiana-Starke"), + ("US/Michigan", "US/Michigan"), + ("US/Mountain", "US/Mountain"), + ("US/Pacific", "US/Pacific"), + ("US/Samoa", "US/Samoa"), + ("UTC", "UTC"), + ("Universal", "Universal"), + ("W-SU", "W-SU"), + ("WET", "WET"), + ("Zulu", "Zulu"), + ("localtime", "localtime"), + ], + default="UTC", + max_length=255, + ), + ), + ] diff --git a/bookwyrm/migrations/0214_alter_edition_isbn_10_alter_edition_isbn_13.py b/bookwyrm/migrations/0214_alter_edition_isbn_10_alter_edition_isbn_13.py new file mode 100644 index 0000000000..68463548a8 --- /dev/null +++ b/bookwyrm/migrations/0214_alter_edition_isbn_10_alter_edition_isbn_13.py @@ -0,0 +1,35 @@ +# Generated by Django 4.2.20 on 2025-05-02 18:17 + +import bookwyrm.models.book +import bookwyrm.models.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0213_alter_user_preferred_timezone"), + ] + + operations = [ + migrations.AlterField( + model_name="edition", + name="isbn_10", + field=bookwyrm.models.fields.CharField( + blank=True, + max_length=255, + null=True, + validators=[bookwyrm.models.book.validate_isbn10], + ), + ), + migrations.AlterField( + model_name="edition", + name="isbn_13", + field=bookwyrm.models.fields.CharField( + blank=True, + max_length=255, + null=True, + validators=[bookwyrm.models.book.validate_isbn13], + ), + ), + ] diff --git a/bookwyrm/migrations/0215_cleanupuserexportfilesjob_and_more.py b/bookwyrm/migrations/0215_cleanupuserexportfilesjob_and_more.py new file mode 100644 index 0000000000..550b67d044 --- /dev/null +++ b/bookwyrm/migrations/0215_cleanupuserexportfilesjob_and_more.py @@ -0,0 +1,42 @@ +# Generated by Django 4.2.22 on 2025-08-16 01:38 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0214_alter_edition_isbn_10_alter_edition_isbn_13"), + ] + + operations = [ + migrations.CreateModel( + name="CleanUpUserExportFilesJob", + fields=[ + ( + "parentjob_ptr", + models.OneToOneField( + auto_created=True, + on_delete=django.db.models.deletion.CASCADE, + parent_link=True, + primary_key=True, + serialize=False, + to="bookwyrm.parentjob", + ), + ), + ("expiry_date", models.DateTimeField()), + ("tasks", models.IntegerField(default=0)), + ("completed_tasks", models.IntegerField(default=0)), + ], + options={ + "abstract": False, + }, + bases=("bookwyrm.parentjob",), + ), + migrations.AddField( + model_name="sitesettings", + name="export_files_lifetime_hours", + field=models.IntegerField(default=72), + ), + ] diff --git a/bookwyrm/migrations/0215_rename_userrelationshipimport_userimportrelationship_and_more.py b/bookwyrm/migrations/0215_rename_userrelationshipimport_userimportrelationship_and_more.py new file mode 100644 index 0000000000..fec58ec5e5 --- /dev/null +++ b/bookwyrm/migrations/0215_rename_userrelationshipimport_userimportrelationship_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 4.2.22 on 2025-07-27 06:03 + +import bookwyrm.models.bookwyrm_import_job +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0214_alter_edition_isbn_10_alter_edition_isbn_13"), + ] + + operations = [ + migrations.RenameModel( + old_name="UserRelationshipImport", + new_name="UserImportRelationship", + ), + migrations.AlterField( + model_name="bookwyrmimportjob", + name="archive_file", + field=models.FileField( + blank=True, + null=True, + storage=bookwyrm.models.bookwyrm_import_job.select_exports_storage, + upload_to="", + ), + ), + ] diff --git a/bookwyrm/migrations/0216_alter_edition_shelves_alter_list_books_and_more.py b/bookwyrm/migrations/0216_alter_edition_shelves_alter_list_books_and_more.py new file mode 100644 index 0000000000..14177599f6 --- /dev/null +++ b/bookwyrm/migrations/0216_alter_edition_shelves_alter_list_books_and_more.py @@ -0,0 +1,93 @@ +# Generated by Django 5.2.3 on 2025-06-24 08:38 + +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ( + "bookwyrm", + "0215_rename_userrelationshipimport_userimportrelationship_and_more", + ), + ] + + operations = [ + migrations.AlterField( + model_name="edition", + name="shelves", + field=models.ManyToManyField( + through="bookwyrm.ShelfBook", + through_fields=("book", "shelf"), + to="bookwyrm.shelf", + ), + ), + migrations.AlterField( + model_name="list", + name="books", + field=models.ManyToManyField( + through="bookwyrm.ListItem", + through_fields=("book_list", "book"), + to="bookwyrm.edition", + ), + ), + migrations.AlterField( + model_name="shelf", + name="books", + field=models.ManyToManyField( + through="bookwyrm.ShelfBook", + through_fields=("shelf", "book"), + to="bookwyrm.edition", + ), + ), + migrations.AlterField( + model_name="status", + name="favorites", + field=models.ManyToManyField( + related_name="user_favorites", + through="bookwyrm.Favorite", + through_fields=("status", "user"), + to=settings.AUTH_USER_MODEL, + ), + ), + migrations.AlterField( + model_name="user", + name="blocks", + field=models.ManyToManyField( + related_name="blocked_by", + through="bookwyrm.UserBlocks", + through_fields=("user_subject", "user_object"), + to=settings.AUTH_USER_MODEL, + ), + ), + migrations.AlterField( + model_name="user", + name="favorites", + field=models.ManyToManyField( + related_name="favorite_statuses", + through="bookwyrm.Favorite", + through_fields=("user", "status"), + to="bookwyrm.status", + ), + ), + migrations.AlterField( + model_name="user", + name="follow_requests", + field=models.ManyToManyField( + related_name="follower_requests", + through="bookwyrm.UserFollowRequest", + through_fields=("user_subject", "user_object"), + to=settings.AUTH_USER_MODEL, + ), + ), + migrations.AlterField( + model_name="user", + name="followers", + field=models.ManyToManyField( + related_name="following", + through="bookwyrm.UserFollows", + through_fields=("user_object", "user_subject"), + to=settings.AUTH_USER_MODEL, + ), + ), + ] diff --git a/bookwyrm/migrations/0217_merge_20250816_0749.py b/bookwyrm/migrations/0217_merge_20250816_0749.py new file mode 100644 index 0000000000..ae2fa96f78 --- /dev/null +++ b/bookwyrm/migrations/0217_merge_20250816_0749.py @@ -0,0 +1,13 @@ +# Generated by Django 5.2.3 on 2025-08-16 07:49 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0215_cleanupuserexportfilesjob_and_more"), + ("bookwyrm", "0216_alter_edition_shelves_alter_list_books_and_more"), + ] + + operations = [] diff --git a/bookwyrm/migrations/0217_usersession.py b/bookwyrm/migrations/0217_usersession.py new file mode 100644 index 0000000000..f470145eb1 --- /dev/null +++ b/bookwyrm/migrations/0217_usersession.py @@ -0,0 +1,42 @@ +# Generated by Django 5.2.3 on 2025-08-13 00:07 + +import django.db.models.deletion +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0216_alter_edition_shelves_alter_list_books_and_more"), + ] + + operations = [ + migrations.CreateModel( + name="UserSession", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("session_key", models.CharField(max_length=40)), + ("created_date", models.DateTimeField(auto_now_add=True)), + ("operating_system", models.CharField(max_length=50)), + ("browser_type", models.CharField(max_length=50)), + ("ip_address", models.CharField(max_length=45)), + ( + "user", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="sessions", + to=settings.AUTH_USER_MODEL, + ), + ), + ], + ), + ] diff --git a/bookwyrm/migrations/0218_merge_0217_merge_20250816_0749_0217_usersession.py b/bookwyrm/migrations/0218_merge_0217_merge_20250816_0749_0217_usersession.py new file mode 100644 index 0000000000..12dec50729 --- /dev/null +++ b/bookwyrm/migrations/0218_merge_0217_merge_20250816_0749_0217_usersession.py @@ -0,0 +1,13 @@ +# Generated by Django 5.2.3 on 2025-09-08 18:40 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0217_merge_20250816_0749"), + ("bookwyrm", "0217_usersession"), + ] + + operations = [] diff --git a/bookwyrm/models/__init__.py b/bookwyrm/models/__init__.py index 6bb99c7f25..9c93d3b1ac 100644 --- a/bookwyrm/models/__init__.py +++ b/bookwyrm/models/__init__.py @@ -25,8 +25,15 @@ from .group import Group, GroupMember, GroupMemberInvitation +from .housekeeping import CleanUpUserExportFilesJob, start_export_deletions + from .import_job import ImportJob, ImportItem -from .bookwyrm_import_job import BookwyrmImportJob +from .bookwyrm_import_job import ( + BookwyrmImportJob, + UserImportBook, + UserImportPost, + import_book_task, +) from .bookwyrm_export_job import BookwyrmExportJob from .move import MoveUser @@ -40,6 +47,8 @@ from .hashtag import Hashtag +from .session import UserSession, create_user_session + cls_members = inspect.getmembers(sys.modules[__name__], inspect.isclass) activity_models = { c[1].activity_serializer.__name__: c[1] diff --git a/bookwyrm/models/activitypub_mixin.py b/bookwyrm/models/activitypub_mixin.py index 06ef373e68..71f7b0ed90 100644 --- a/bookwyrm/models/activitypub_mixin.py +++ b/bookwyrm/models/activitypub_mixin.py @@ -31,7 +31,7 @@ PropertyField = namedtuple("PropertyField", ("set_activity_from_field")) -# pylint: disable=invalid-name + def set_activity_from_property_field(activity, obj, field): """assign a model property value to the activity json""" activity[field[1]] = getattr(obj, field[0]) @@ -129,7 +129,20 @@ def find_existing(cls, data): def broadcast(self, activity, sender, software=None, queue=BROADCAST): """send out an activity""" + + # if we're posting about ShelfBooks, set a delay to give the base activity + # time to add the book on remote servers first to avoid race conditions + countdown = ( + 10 + if ( + isinstance(activity, object) + and not isinstance(activity["object"], str) + and activity["object"].get("type", None) in ["GeneratedNote", "Comment"] + ) + else 0 + ) broadcast_task.apply_async( + countdown=countdown, args=( sender.id, json.dumps(activity, cls=activitypub.ActivityEncoder), @@ -227,6 +240,7 @@ def save( return try: + # TODO: here is where we might use an ActivityPub extension instead # do we have a "pure" activitypub version of this for mastodon? if software != "bookwyrm" and hasattr(self, "pure_content"): pure_activity = self.to_create_activity(user, pure=True) diff --git a/bookwyrm/models/base_model.py b/bookwyrm/models/base_model.py index ca13d95538..814e59a733 100644 --- a/bookwyrm/models/base_model.py +++ b/bookwyrm/models/base_model.py @@ -62,7 +62,7 @@ def local_path(self): name = self.name if name: - slug = slugify(name) + slug = slugify(name, allow_unicode=True) local = f"{local}/s/{slug}" return local diff --git a/bookwyrm/models/book.py b/bookwyrm/models/book.py index 4ff377dbbb..164f8e9322 100644 --- a/bookwyrm/models/book.py +++ b/bookwyrm/models/book.py @@ -8,6 +8,7 @@ from django.contrib.postgres.search import SearchVectorField from django.contrib.postgres.indexes import GinIndex from django.core.cache import cache +from django.core.exceptions import ValidationError from django.db import models, transaction from django.db.models import Prefetch, ManyToManyField from django.dispatch import receiver @@ -41,6 +42,9 @@ class BookDataModel(ObjectMixin, BookWyrmModel): openlibrary_key = fields.CharField( max_length=255, blank=True, null=True, deduplication_field=True ) + finna_key = fields.CharField( + max_length=255, blank=True, null=True, deduplication_field=True + ) inventaire_id = fields.CharField( max_length=255, blank=True, null=True, deduplication_field=True ) @@ -91,6 +95,11 @@ def isfdb_link(self): """generate the url from the isfdb id""" return f"https://www.isfdb.org/cgi-bin/title.cgi?{self.isfdb}" + @property + def finna_link(self): + """generate the url from the finna key""" + return f"http://finna.fi/Record/{self.finna_key}" + class Meta: """can't initialize this model, that wouldn't make sense""" @@ -133,7 +142,6 @@ def merge_into(self, canonical: Self, dry_run=False) -> Dict[str, Any]: related_models = [ (r.remote_field.name, r.related_model) for r in self._meta.related_objects ] - # pylint: disable=protected-access for related_field, related_model in related_models: # Skip the ManyToMany fields that aren’t auto-created. These # should have a corresponding OneToMany field in the model for @@ -334,11 +342,35 @@ def get_remote_id(self): """editions and works both use "book" instead of model_name""" return f"{BASE_URL}/book/{self.id}" - def guess_sort_title(self): + def guess_sort_title(self, user=None): """Get a best-guess sort title for the current book""" + + if self.languages not in ([], None): + lang_codes = set( + k + for (k, v) in LANGUAGE_ARTICLES.items() + for language in tuple(self.languages) + if language.lower() in v["variants"] + ) + + elif user and user.preferred_language: + lang_codes = set( + k + for (k, v) in LANGUAGE_ARTICLES.items() + if user.preferred_language.lower() in v["variants"] + ) + + else: + lang_codes = set( + k + for (k, v) in LANGUAGE_ARTICLES.items() + if DEFAULT_LANGUAGE.lower() in v["variants"] + ) + articles = chain( - *(LANGUAGE_ARTICLES.get(language, ()) for language in tuple(self.languages)) + *(LANGUAGE_ARTICLES[language].get("articles") for language in lang_codes) ) + return re.sub(f'^{" |^".join(articles)} ', "", str(self.title).lower()) def __repr__(self): @@ -446,15 +478,107 @@ def to_edition_list(self, **kwargs): ] +def validate_isbn10(maybe_isbn: str) -> None: + """Check if isbn10 mathes some expectations""" + + if not (normalized_isbn := normalize_isbn(maybe_isbn)): + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + normalized_isbn = normalized_isbn.zfill(10) + # len should be 10 with poddible 0 in front + if len(normalized_isbn) != 10: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + # Last character can be X for checksum mark + if not normalized_isbn.upper()[:-1].isnumeric(): + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + if (isbn13_version := isbn_10_to_13(normalized_isbn)) is None: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + if (checksum_version := isbn_13_to_10(isbn13_version)) is None: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + if checksum_version != normalized_isbn: + raise ValidationError( + _( + "%(value)s doesn't have correct ISBN checksum, " + "we expected %(check_version)s" + ), + params={"value": maybe_isbn, "check_version": checksum_version}, + ) + + +def validate_isbn13(maybe_isbn: str) -> None: + """Check if isbn13 mathes some expectations""" + + if maybe_isbn[:3] not in ["978", "979"]: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + normalized_isbn = normalize_isbn(maybe_isbn) + if len(normalized_isbn) != 13: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + if not normalized_isbn.isnumeric(): + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + if (isbn10_version := isbn_13_to_10(normalized_isbn)) is None: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + if (checksum_version := isbn_10_to_13(isbn10_version)) is None: + raise ValidationError( + _("%(value)s doesn't look like an ISBN"), params={"value": maybe_isbn} + ) + + # We might have 978 or 979 prefix, so ignore that on comparing + if checksum_version[3:] != normalized_isbn[3:]: + raise ValidationError( + _( + "%(value)s doesn't have correct ISBN checksum, " + "we expected %(check_version)s" + ), + params={ + "value": maybe_isbn, + "check_version": maybe_isbn[:3] + checksum_version[3:], + }, + ) + + class Edition(Book): """an edition of a book""" # these identifiers only apply to editions, not works isbn_10 = fields.CharField( - max_length=255, blank=True, null=True, deduplication_field=True + max_length=255, + blank=True, + null=True, + deduplication_field=True, + validators=[validate_isbn10], ) isbn_13 = fields.CharField( - max_length=255, blank=True, null=True, deduplication_field=True + max_length=255, + blank=True, + null=True, + deduplication_field=True, + validators=[validate_isbn13], ) oclc_number = fields.CharField( max_length=255, blank=True, null=True, deduplication_field=True @@ -617,7 +741,7 @@ def isbn_10_to_13(isbn_10): def isbn_13_to_10(isbn_13): """convert isbn 13 to 10, if possible""" - if isbn_13[:3] != "978": + if isbn_13[:3] not in ["978", "979"]: return None isbn_13 = re.sub(r"[^0-9X]", "", isbn_13) diff --git a/bookwyrm/models/bookwyrm_export_job.py b/bookwyrm/models/bookwyrm_export_job.py index f355c86a4a..8fbb659ad0 100644 --- a/bookwyrm/models/bookwyrm_export_job.py +++ b/bookwyrm/models/bookwyrm_export_job.py @@ -6,8 +6,7 @@ from boto3.session import Session as BotoSession from s3_tar import S3Tar -from django.db.models import BooleanField, FileField, JSONField -from django.db.models import Q +from django.db.models import FileField, JSONField from django.core.serializers.json import DjangoJSONEncoder from django.core.files.base import ContentFile from django.core.files.storage import storages @@ -18,7 +17,7 @@ from bookwyrm.models import Review, Comment, Quotation from bookwyrm.models import Edition from bookwyrm.models import UserFollows, User, UserBlocks -from bookwyrm.models.job import ParentJob +from bookwyrm.models.job import ParentJob, ParentTask from bookwyrm.tasks import app, IMPORTS from bookwyrm.utils.tar import BookwyrmTarFile @@ -28,7 +27,7 @@ class BookwyrmAwsSession(BotoSession): """a boto session that always uses settings.AWS_S3_ENDPOINT_URL""" - def client(self, *args, **kwargs): # pylint: disable=arguments-differ + def client(self, *args, **kwargs): kwargs["endpoint_url"] = settings.AWS_S3_ENDPOINT_URL return super().client("s3", *args, **kwargs) @@ -43,38 +42,41 @@ class BookwyrmExportJob(ParentJob): export_data = FileField(null=True, storage=select_exports_storage) export_json = JSONField(null=True, encoder=DjangoJSONEncoder) - json_completed = BooleanField(default=False) def start_job(self): """schedule the first task""" - task = create_export_json_task.delay(job_id=self.id) - self.task_id = task.id - self.save(update_fields=["task_id"]) + self.set_status("active") + create_export_json_task.delay(job_id=self.id) -@app.task(queue=IMPORTS) -def create_export_json_task(job_id): +@app.task(queue=IMPORTS, base=ParentTask) +def create_export_json_task(**kwargs): """create the JSON data for the export""" - job = BookwyrmExportJob.objects.get(id=job_id) - + job = BookwyrmExportJob.objects.get(id=kwargs["job_id"]) # don't start the job if it was stopped from the UI - if job.complete: + if job.status == "stopped": return try: - job.set_status("active") - - # generate JSON structure - job.export_json = export_json(job.user) + # generate JSON + data = export_user(job.user) + data["settings"] = export_settings(job.user) + data["goals"] = export_goals(job.user) + data["books"] = export_books(job.user) + data["saved_lists"] = export_saved_lists(job.user) + data["follows"] = export_follows(job.user) + data["blocks"] = export_blocks(job.user) + job.export_json = data job.save(update_fields=["export_json"]) - # create archive in separate task + # trigger task to create tar file create_archive_task.delay(job_id=job.id) + except Exception as err: # pylint: disable=broad-except logger.exception( - "create_export_json_task for %s failed with error: %s", job, err + "create_export_json_task for job %s failed with error: %s", job.id, err ) job.set_status("failed") @@ -95,23 +97,21 @@ def add_file_to_s3_tar(s3_tar: S3Tar, storage, file, directory=""): ) -@app.task(queue=IMPORTS) -def create_archive_task(job_id): +@app.task(queue=IMPORTS, base=ParentTask) +def create_archive_task(**kwargs): """create the archive containing the JSON file and additional files""" - job = BookwyrmExportJob.objects.get(id=job_id) + job = BookwyrmExportJob.objects.get(id=kwargs["job_id"]) # don't start the job if it was stopped from the UI - if job.complete: + if job.status == "stopped": return try: export_task_id = str(job.task_id) archive_filename = f"{export_task_id}.tar.gz" export_json_bytes = DjangoJSONEncoder().encode(job.export_json).encode("utf-8") - user = job.user - editions = get_books_for_user(user) if settings.USE_S3: # Storage for writing temporary files @@ -134,18 +134,12 @@ def create_archive_task(job_id): os.path.join(exports_storage.location, export_json_tmp_file) ) - # Add images to TAR + # Add avatar to TAR images_storage = storages["default"] if user.avatar: add_file_to_s3_tar(s3_tar, images_storage, user.avatar) - for edition in editions: - if edition.cover: - add_file_to_s3_tar( - s3_tar, images_storage, edition.cover, directory="images" - ) - # Create archive and store file name s3_tar.tar() job.export_data = archive_filename @@ -165,30 +159,17 @@ def create_archive_task(job_id): if user.avatar: tar.add_image(user.avatar) - for edition in editions: - if edition.cover: - tar.add_image(edition.cover, directory="images") job.save(update_fields=["export_data"]) - job.set_status("completed") + job.complete_job() except Exception as err: # pylint: disable=broad-except - logger.exception("create_archive_task for %s failed with error: %s", job, err) + logger.exception( + "create_archive_task for job %s failed with error: %s", job.id, err + ) job.set_status("failed") -def export_json(user: User): - """create export JSON""" - data = export_user(user) # in the root of the JSON structure - data["settings"] = export_settings(user) - data["goals"] = export_goals(user) - data["books"] = export_books(user) - data["saved_lists"] = export_saved_lists(user) - data["follows"] = export_follows(user) - data["blocks"] = export_blocks(user) - return data - - def export_user(user: User): """export user data""" data = user.to_activity() @@ -288,14 +269,14 @@ def export_book(user: User, edition: Edition): for status in ["comments", "quotations", "reviews"]: data[status] = [] - comments = Comment.objects.filter(user=user, book=edition).all() + comments = Comment.objects.filter(user=user, book=edition, deleted=False).all() for status in comments: obj = status.to_activity() obj["progress"] = status.progress obj["progress_mode"] = status.progress_mode data["comments"].append(obj) - quotes = Quotation.objects.filter(user=user, book=edition).all() + quotes = Quotation.objects.filter(user=user, book=edition, deleted=False).all() for status in quotes: obj = status.to_activity() obj["position"] = status.position @@ -303,7 +284,7 @@ def export_book(user: User, edition: Edition): obj["position_mode"] = status.position_mode data["quotations"].append(obj) - reviews = Review.objects.filter(user=user, book=edition).all() + reviews = Review.objects.filter(user=user, book=edition, deleted=False).all() data["reviews"] = [status.to_activity() for status in reviews] # readthroughs can't be serialized to activity @@ -315,19 +296,26 @@ def export_book(user: User, edition: Edition): def get_books_for_user(user): - """Get all the books and editions related to a user""" - - editions = ( - Edition.objects.select_related("parent_work") - .filter( - Q(shelves__user=user) - | Q(readthrough__user=user) - | Q(review__user=user) - | Q(list__user=user) - | Q(comment__user=user) - | Q(quotation__user=user) - ) - .distinct() + """ + Get all the books and editions related to a user. + We use union() instead of Q objects because it creates + multiple simple queries instead of a complex DB query + that can time out. + """ + + shelf_eds = Edition.objects.select_related("parent_work").filter(shelves__user=user) + rt_eds = Edition.objects.select_related("parent_work").filter( + readthrough__user=user + ) + review_eds = Edition.objects.select_related("parent_work").filter(review__user=user) + list_eds = Edition.objects.select_related("parent_work").filter(list__user=user) + comment_eds = Edition.objects.select_related("parent_work").filter( + comment__user=user, comment__deleted=False ) + quote_eds = Edition.objects.select_related("parent_work").filter( + quotation__user=user, quotation__deleted=False + ) + + editions = shelf_eds.union(rt_eds, review_eds, list_eds, comment_eds, quote_eds) return editions diff --git a/bookwyrm/models/bookwyrm_import_job.py b/bookwyrm/models/bookwyrm_import_job.py index 5229430eb0..d679be2928 100644 --- a/bookwyrm/models/bookwyrm_import_job.py +++ b/bookwyrm/models/bookwyrm_import_job.py @@ -2,43 +2,251 @@ import json import logging - -from django.db.models import FileField, JSONField, CharField +import math +from urllib.parse import urlparse + +from botocore.exceptions import EndpointConnectionError +import requests + +from django.apps import apps +from django.db.models import ( + BooleanField, + ForeignKey, + FileField, + JSONField, + TextChoices, + PROTECT, + SET_NULL, +) +from django.core.files.storage import storages from django.utils import timezone from django.utils.html import strip_tags +from django.utils.translation import gettext_lazy as _ from django.contrib.postgres.fields import ArrayField as DjangoArrayField -from bookwyrm import activitypub -from bookwyrm import models +from bookwyrm import activitypub, models, settings +from bookwyrm.connectors import connector_manager from bookwyrm.tasks import app, IMPORTS -from bookwyrm.models.job import ParentJob, ParentTask, SubTask +from bookwyrm.models.job import Job, ParentJob, ChildJob, ParentTask, SubTask from bookwyrm.utils.tar import BookwyrmTarFile logger = logging.getLogger(__name__) +def select_exports_storage(): + """callable to allow for dependency on runtime configuration""" + return storages["exports"] + + class BookwyrmImportJob(ParentJob): """entry for a specific request for importing a bookwyrm user backup""" - archive_file = FileField(null=True, blank=True) + archive_file = FileField(null=True, blank=True, storage=select_exports_storage) import_data = JSONField(null=True) - required = DjangoArrayField(CharField(max_length=50, blank=True), blank=True) + required = DjangoArrayField( + models.fields.CharField(max_length=50, blank=True), blank=True + ) + retry = BooleanField(default=False) + + def start_job(self): + """Start the job""" + start_import_task.delay(job_id=self.id) + + @property + def book_tasks(self): + """How many import book tasks are there?""" + return UserImportBook.objects.filter(parent_job=self).all() + + @property + def status_tasks(self): + """How many import status tasks are there?""" + return UserImportPost.objects.filter(parent_job=self).all() + + @property + def relationship_tasks(self): + """How many import relationship tasks are there?""" + return UserImportRelationship.objects.filter(parent_job=self).all() + + @property + def item_count(self): + """How many total tasks are there?""" + return self.book_tasks.count() + self.status_tasks.count() + + @property + def pending_item_count(self): + """How many tasks are incomplete?""" + status = BookwyrmImportJob.Status + book_tasks = self.book_tasks.filter( + status__in=[status.PENDING, status.ACTIVE] + ).count() + + status_tasks = self.status_tasks.filter( + status__in=[status.PENDING, status.ACTIVE] + ).count() + + relationship_tasks = self.relationship_tasks.filter( + status__in=[status.PENDING, status.ACTIVE] + ).count() + + return book_tasks + status_tasks + relationship_tasks + + @property + def percent_complete(self): + """How far along?""" + item_count = self.item_count + if not item_count: + return 0 + return math.floor((item_count - self.pending_item_count) / item_count * 100) + + def complete_job(self): + """Report that the job has completed and stop pending children.""" + + super().complete_job() + + # delete the import file + self.archive_file.delete(save=True) + + def notify_child_job_complete(self): + """let the job know when the items get work done""" + + if self.complete: + return + + self.updated_date = timezone.now() + self.save(update_fields=["updated_date"]) + + if not self.complete and self.has_completed: + self.complete_job() + + +class UserImportBook(ChildJob): + """ChildJob to import each book. + Equivalent to ImportItem when importing a csv file of books""" + + book = ForeignKey(models.Book, on_delete=SET_NULL, null=True, blank=True) + book_data = JSONField(null=False) + + def start_job(self, origin_is_ok=False): + """Start the job""" + import_book_task.delay( + child_id=self.id, origin_is_ok=origin_is_ok, job_type="UserImportBook" + ) + + def complete_job(self): + """Report to BookwyrmImportJob that the job has completed. + Do not use super() here because the parent class will + complete the job over the top of us and then you will be sad.""" + + Job.complete_job(self) # don't notify ParentJob + parent = BookwyrmImportJob.objects.get(id=self.parent_job.id) + parent.notify_child_job_complete() + + +class UserImportPost(ChildJob): + """ChildJob for comments, quotes, and reviews""" + + class StatusType(TextChoices): + """Possible status types.""" + + COMMENT = "comment", _("Comment") + REVIEW = "review", _("Review") + QUOTE = "quote", _("Quotation") + + json = JSONField(null=False) + book = models.fields.ForeignKey( + "Edition", on_delete=PROTECT, activitypub_field="inReplyToBook" + ) + status_type = models.fields.CharField( + max_length=10, choices=StatusType.choices, default=StatusType.COMMENT, null=True + ) + + def start_job(self): + """Start the job""" + upsert_status_task.delay(child_id=self.id, job_type="UserImportPost") + + def complete_job(self): + """Report to BookwyrmImportJob that the job has completed.""" + + Job.complete_job(self) # don't notify ParentJob + parent = BookwyrmImportJob.objects.get(id=self.parent_job.id) + parent.notify_child_job_complete() + + +class UserImportRelationship(ChildJob): + """ChildJob for follows and blocks""" + + class RelationshipType(TextChoices): + """Possible relationship types.""" + + FOLLOW = "follow", _("Follow") + BLOCK = "block", _("Block") + + relationship = models.fields.CharField( + max_length=10, choices=RelationshipType.choices, null=True + ) + remote_id = models.fields.RemoteIdField(null=True, unique=False) def start_job(self): """Start the job""" - start_import_task.delay(job_id=self.id, no_children=True) + import_user_relationship_task.delay( + child_id=self.id, job_type="UserImportRelationship" + ) + + def complete_job(self): + """Report to BookwyrmImportJob that the job has completed.""" + + Job.complete_job(self) # don't notify ParentJob + parent = BookwyrmImportJob.objects.get(id=self.parent_job.id) + parent.notify_child_job_complete() + + +class ImportUserTask(ParentTask): + """A task for a user import job""" + + def before_start(self, task_id, args, kwargs): + """Handler called before the task starts.""" + job = BookwyrmImportJob.objects.get(id=kwargs["job_id"]) + job.task_id = task_id + job.save(update_fields=["task_id"]) + + +class UserImportSubTask(SubTask): + """Makes sure we refer to the correct child job and call + subclass methods instead of methods on ChildJob & ParentJob""" + + def before_start(self, task_id, args, kwargs): + """Handler called before the task starts.""" + + model = apps.get_model(f'bookwyrm.{kwargs["job_type"]}', require_ready=True) + child_job = model.objects.get(id=kwargs["child_id"]) + child_job.task_id = task_id + child_job.save(update_fields=["task_id"]) + child_job.set_status(ChildJob.Status.ACTIVE) + def on_success(self, retval, task_id, args, kwargs): + """Run by the worker if the task executes successfully""" -@app.task(queue=IMPORTS, base=ParentTask) + # we want to complete our own UserImportBook job, not ChildJob + model = apps.get_model(f'bookwyrm.{kwargs["job_type"]}', require_ready=True) + subtask = model.objects.get(id=kwargs["child_id"]) + subtask.complete_job() + + +# pylint: disable=too-many-branches +@app.task(queue=IMPORTS, base=ImportUserTask) def start_import_task(**kwargs): - """trigger the child import tasks for each user data""" + """trigger the child import tasks for each user data + We always import the books even if not assigning + them to shelves, lists etc""" job = BookwyrmImportJob.objects.get(id=kwargs["job_id"]) - archive_file = job.archive_file + archive_file = job.bookwyrmimportjob.archive_file - # don't start the job if it was stopped from the UI - if job.complete: + if job.status == "stopped": return + job.status = "active" + job.save(update_fields=["status"]) + try: archive_file.open("rb") with BookwyrmTarFile.open(mode="r:gz", fileobj=archive_file) as tar: @@ -56,135 +264,198 @@ def start_import_task(**kwargs): if "include_saved_lists" in job.required: upsert_saved_lists(job.user, job.import_data.get("saved_lists", [])) if "include_follows" in job.required: - upsert_follows(job.user, job.import_data.get("follows", [])) + for remote_id in job.import_data.get("follows", []): + UserImportRelationship.objects.create( + parent_job=job, remote_id=remote_id, relationship="follow" + ) if "include_blocks" in job.required: - upsert_user_blocks(job.user, job.import_data.get("blocks", [])) - - process_books(job, tar) - - job.set_status("complete") - archive_file.close() - - except Exception as err: # pylint: disable=broad-except - logger.exception("User Import Job %s Failed with error: %s", job.id, err) - job.set_status("failed") - - -def process_books(job, tar): - """ - Process user import data related to books - We always import the books even if not assigning - them to shelves, lists etc - """ - - books = job.import_data.get("books") + for remote_id in job.import_data.get("blocks", []): + UserImportRelationship.objects.create( + parent_job=job, remote_id=remote_id, relationship="block" + ) + + for item in UserImportRelationship.objects.filter(parent_job=job).all(): + item.start_job() + + try: + url_parts = urlparse(job.import_data.get("id")) + url = f"{url_parts.scheme}://{url_parts.netloc}" + # Check https://example.com to see if the instance is still online + # If not, we don't bother trying to pull book data from it. + resp = requests.head( + url, + headers={ + "User-Agent": settings.USER_AGENT, + }, + timeout=settings.QUERY_TIMEOUT, + ) - for data in books: - book = get_or_create_edition(data, tar) + origin_is_ok = resp.ok - if "include_shelves" in job.required: - upsert_shelves(book, job.user, data) + except ( + EndpointConnectionError, + requests.exceptions.ConnectionError, + ConnectionRefusedError, + ): - if "include_readthroughs" in job.required: - upsert_readthroughs(data.get("readthroughs"), job.user, book.id) + origin_is_ok = False - if "include_comments" in job.required: - upsert_statuses( - job.user, models.Comment, data.get("comments"), book.remote_id - ) - if "include_quotations" in job.required: - upsert_statuses( - job.user, models.Quotation, data.get("quotations"), book.remote_id - ) + for data in job.import_data.get("books"): + book_job = UserImportBook.objects.create(parent_job=job, book_data=data) + book_job.start_job(origin_is_ok=origin_is_ok) - if "include_reviews" in job.required: - upsert_statuses( - job.user, models.Review, data.get("reviews"), book.remote_id - ) + archive_file.close() - if "include_lists" in job.required: - upsert_lists(job.user, data.get("lists"), book.id) + except Exception as err: # pylint: disable=broad-except + logger.error( + "User Import Job %s Failed with error: %s", job.id, err, exc_info=True + ) + job.set_status("failed") -def get_or_create_edition(book_data, tar): - """Take a JSON string of work and edition data, - find or create the edition and work in the database and - return an edition instance""" +def create_book_from_json(book_data): + """create a book from the JSON in the import file + as a last resort if we can't find the book + in this instance or in the source instance""" edition = book_data.get("edition") - existing = models.Edition.find_existing(edition) - if existing: - return existing - + work = book_data.get("work") # make sure we have the authors in the local DB # replace the old author ids in the edition JSON edition["authors"] = [] + work["authors"] = [] for author in book_data.get("authors"): - parsed_author = activitypub.parse(author) - instance = parsed_author.to_model( - model=models.Author, save=True, overwrite=True + instance = activitypub.parse(author).to_model( + model=models.Author, save=True, overwrite=False ) edition["authors"].append(instance.remote_id) - - # we will add the cover later from the tar - # don't try to load it from the old server - cover = edition.get("cover", {}) - cover_path = cover.get("url", None) - edition["cover"] = {} + work["authors"].append(instance.remote_id) # first we need the parent work to exist - work = book_data.get("work") work["editions"] = [] - parsed_work = activitypub.parse(work) - work_instance = parsed_work.to_model(model=models.Work, save=True, overwrite=True) + work_instance = activitypub.parse(work).to_model( + model=models.Work, save=True, overwrite=False + ) # now we have a work we can add it to the edition # and create the edition model instance edition["work"] = work_instance.remote_id - parsed_edition = activitypub.parse(edition) - book = parsed_edition.to_model(model=models.Edition, save=True, overwrite=True) - - # set the cover image from the tar - if cover_path: - tar.write_image_to_file(cover_path, book.cover) + book = activitypub.parse(edition).to_model( + model=models.Edition, save=True, overwrite=False + ) return book -def upsert_readthroughs(data, user, book_id): - """Take a JSON string of readthroughs and - find or create the instances in the database""" +@app.task(queue=IMPORTS, base=UserImportSubTask) +def import_book_task(**kwargs): # pylint: disable=too-many-branches + """Take work and edition data, + find or create the edition and work in the database""" - for read_through in data: + task = UserImportBook.objects.get(id=kwargs["child_id"]) + job = task.parent_job + book_data = task.book_data - obj = {} - keys = [ - "progress_mode", - "start_date", - "finish_date", - "stopped_date", - "is_active", - ] - for key in keys: - obj[key] = read_through[key] - obj["user_id"] = user.id - obj["book_id"] = book_id + if task.complete or job.status == "stopped": + return - existing = models.ReadThrough.objects.filter(**obj).first() - if not existing: - models.ReadThrough.objects.create(**obj) + try: + edition = book_data.get("edition") + book = models.Edition.find_existing(edition) + if not book: + + if kwargs["origin_is_ok"]: + # try importing from the instance the user is coming from + remote_id = edition.get("id") + connector = connector_manager.get_or_create_connector(remote_id) + book = connector.get_or_create_book(remote_id) + + if not book: + # import directly from the import JSON + # this will not create a cover image + book = create_book_from_json(book_data) + + task.book = book + task.save(update_fields=["book"]) + required = task.parent_job.bookwyrmimportjob.required + + if "include_shelves" in required: + upsert_shelves(task.parent_job.user, book, book_data.get("shelves")) + + if "include_readthroughs" in required: + upsert_readthroughs( + task.parent_job.user, book.id, book_data.get("readthroughs") + ) + if "include_lists" in required: + upsert_lists(task.parent_job.user, book.id, book_data.get("lists")) -def upsert_statuses(user, cls, data, book_remote_id): - """Take a JSON string of a status and - find or create the instances in the database""" + except Exception as err: # pylint: disable=broad-except + logger.error( + "Book Import Task %s for Job %s Failed with error: %s", task.id, job.id, err + ) + task.fail_reason = _("Unknown error importing book") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") + + # Now import statuses + # These are also subtasks so that we can isolate anything that fails + if "include_comments" in job.bookwyrmimportjob.required: + for status in book_data.get("comments"): + UserImportPost.objects.create( + parent_job=task.parent_job, + json=status, + book=book, + status_type=UserImportPost.StatusType.COMMENT, + ) - for status in data: - if is_alias( - user, status["attributedTo"] - ): # don't let l33t hax0rs steal other people's posts - # update ids and remove replies + if "include_quotations" in job.bookwyrmimportjob.required: + for status in book_data.get("quotations"): + UserImportPost.objects.create( + parent_job=task.parent_job, + json=status, + book=book, + status_type=UserImportPost.StatusType.QUOTE, + ) + + if "include_reviews" in job.bookwyrmimportjob.required: + for status in book_data.get("reviews"): + UserImportPost.objects.create( + parent_job=task.parent_job, + json=status, + book=book, + status_type=UserImportPost.StatusType.REVIEW, + ) + + for item in UserImportPost.objects.filter(parent_job=job).all(): + item.start_job() + + task.complete_job() + + +@app.task(queue=IMPORTS, base=UserImportSubTask) +def upsert_status_task(**kwargs): + """Find or create book statuses""" + + task = UserImportPost.objects.get(id=kwargs["child_id"]) + job = task.parent_job + user = job.user + status = task.json + status_class = ( + models.Review + if task.status_type == "review" + else models.Quotation + if task.status_type == "quote" + else models.Comment + ) + + if task.complete or job.status == "stopped": + return + + try: + # only add statuses if this is the same user + if is_alias(user, status.get("attributedTo", False)): status["attributedTo"] = user.remote_id status["to"] = update_followers_address(user, status["to"]) status["cc"] = update_followers_address(user, status["cc"]) @@ -193,13 +464,15 @@ def upsert_statuses(user, cls, data, book_remote_id): ] = ( {} ) # this parses incorrectly but we can't set it without knowing the new id - status["inReplyToBook"] = book_remote_id + status["inReplyToBook"] = task.book.remote_id parsed = activitypub.parse(status) if not status_already_exists( user, parsed ): # don't duplicate posts on multiple import - instance = parsed.to_model(model=cls, save=True, overwrite=True) + instance = parsed.to_model( + model=status_class, save=True, overwrite=True + ) for val in [ "progress", @@ -214,11 +487,52 @@ def upsert_statuses(user, cls, data, book_remote_id): instance.remote_id = instance.get_remote_id() # update the remote_id instance.save() # save and broadcast + task.complete_job() + else: - logger.warning("User does not have permission to import statuses") + logger.warning( + "User not authorized to import statuses, or status is tombstone" + ) + task.fail_reason = _("unauthorized") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") + + except Exception as err: # pylint: disable=broad-except + logger.error("User Status Import Task %s Failed with error: %s", task.id, err) + task.fail_reason = _("Unknown error importing book status") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") -def upsert_lists(user, lists, book_id): +def upsert_readthroughs(user, book_id, data): + """Take a JSON string of readthroughs and + find or create the instances in the database""" + + for read_through in data: + + obj = {} + keys = [ + "progress_mode", + "start_date", + "finish_date", + "stopped_date", + "is_active", + ] + for key in keys: + obj[key] = read_through[key] + obj["user_id"] = user.id + obj["book_id"] = book_id + + existing = models.ReadThrough.objects.filter(**obj).first() + if not existing: + models.ReadThrough.objects.create(**obj) + + +def upsert_lists( + user, + book_id, + lists, +): """Take a list of objects each containing a list and list item as AP objects @@ -244,21 +558,22 @@ def upsert_lists(user, lists, book_id): item = models.ListItem.objects.filter(book=book, book_list=booklist).exists() if not item: count = booklist.books.count() + notes = blist["list_item"].get("notes", "") + approved = blist["list_item"].get("approved", False) models.ListItem.objects.create( book=book, book_list=booklist, user=user, - notes=blist["list_item"]["notes"], - approved=blist["list_item"]["approved"], + notes=notes, + approved=approved, order=count + 1, ) -def upsert_shelves(book, user, book_data): +def upsert_shelves(user, book, shelves): """Take shelf JSON objects and create DB entries if they don't already exist""" - shelves = book_data["shelves"] for shelf in shelves: book_shelf = models.Shelf.objects.filter(name=shelf["name"], user=user).first() @@ -275,6 +590,10 @@ def upsert_shelves(book, user, book_data): ) +# user updates +############## + + def update_user_profile(user, tar, data): """update the user's profile from import data""" name = data.get("name", None) @@ -315,14 +634,6 @@ def update_user_settings(user, data): user.save(update_fields=update_fields) -@app.task(queue=IMPORTS, base=SubTask) -def update_user_settings_task(job_id): - """wrapper task for user's settings import""" - parent_job = BookwyrmImportJob.objects.get(id=job_id) - - return update_user_settings(parent_job.user, parent_job.import_data.get("user")) - - def update_goals(user, data): """update the user's goals from import data""" @@ -340,14 +651,6 @@ def update_goals(user, data): models.AnnualGoal.objects.create(**goal) -@app.task(queue=IMPORTS, base=SubTask) -def update_goals_task(job_id): - """wrapper task for user's goals import""" - parent_job = BookwyrmImportJob.objects.get(id=job_id) - - return update_goals(parent_job.user, parent_job.import_data.get("goals")) - - def upsert_saved_lists(user, values): """Take a list of remote ids and add as saved lists""" @@ -357,68 +660,90 @@ def upsert_saved_lists(user, values): user.saved_lists.add(book_list) -@app.task(queue=IMPORTS, base=SubTask) -def upsert_saved_lists_task(job_id): - """wrapper task for user's saved lists import""" - parent_job = BookwyrmImportJob.objects.get(id=job_id) - - return upsert_saved_lists( - parent_job.user, parent_job.import_data.get("saved_lists") - ) - - -def upsert_follows(user, values): - """Take a list of remote ids and add as follows""" - - for remote_id in values: - followee = activitypub.resolve_remote_id(remote_id, models.User) - if followee: - (follow_request, created,) = models.UserFollowRequest.objects.get_or_create( - user_subject=user, - user_object=followee, - ) - - if not created: - # this request probably failed to connect with the remote - # and should save to trigger a re-broadcast - follow_request.save() - +@app.task(queue=IMPORTS, base=UserImportSubTask) +def import_user_relationship_task(**kwargs): + """import a user follow or block from an import file""" -@app.task(queue=IMPORTS, base=SubTask) -def upsert_follows_task(job_id): - """wrapper task for user's follows import""" - parent_job = BookwyrmImportJob.objects.get(id=job_id) + task = UserImportRelationship.objects.get(id=kwargs["child_id"]) + job = task.parent_job - return upsert_follows(parent_job.user, parent_job.import_data.get("follows")) + try: + if task.relationship == "follow": + + followee = activitypub.resolve_remote_id(task.remote_id, models.User) + if followee: + ( + follow_request, + created, + ) = models.UserFollowRequest.objects.get_or_create( + user_subject=job.user, + user_object=followee, + ) + if not created: + # this request probably failed to connect with the remote + # and should save to trigger a re-broadcast + follow_request.save() -def upsert_user_blocks(user, user_ids): - """block users""" + task.complete_job() - for user_id in user_ids: - user_object = activitypub.resolve_remote_id(user_id, models.User) - if user_object: - exists = models.UserBlocks.objects.filter( - user_subject=user, user_object=user_object - ).exists() - if not exists: - models.UserBlocks.objects.create( - user_subject=user, user_object=user_object + else: + logger.error( + "Could not resolve import user %s follow task %s", + task.remote_id, + task.id, + ) + task.fail_reason = _("connection_error") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") + + elif task.relationship == "block": + + user_object = activitypub.resolve_remote_id(task.remote_id, models.User) + if user_object: + exists = models.UserBlocks.objects.filter( + user_subject=job.user, user_object=user_object + ).exists() + if not exists: + models.UserBlocks.objects.create( + user_subject=job.user, user_object=user_object + ) + # remove the blocked users's lists from the groups + models.List.remove_from_group(job.user, user_object) + # remove the blocked user from all blocker's owned groups + models.GroupMember.remove(job.user, user_object) + + task.complete_job() + + else: + logger.error( + "Could not resolve user %s block task %s", task.remote_id, task.id ) - # remove the blocked users's lists from the groups - models.List.remove_from_group(user, user_object) - # remove the blocked user from all blocker's owned groups - models.GroupMember.remove(user, user_object) + task.fail_reason = _("connection_error") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") + else: + logger.error( + "Invalid relationship type %s specified in user import task %s", + task.relationship, + task.id, + ) + task.fail_reason = _("invalid_relationship") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") -@app.task(queue=IMPORTS, base=SubTask) -def upsert_user_blocks_task(job_id): - """wrapper task for user's blocks import""" - parent_job = BookwyrmImportJob.objects.get(id=job_id) + except Exception as err: # pylint: disable=broad-except + logger.error( + "User Import Relationship Task %s Failed with error: %s", task.id, err + ) + task.fail_reason = _("Unkown error importing relationship") + task.save(update_fields=["fail_reason"]) + task.set_status("failed") - return upsert_user_blocks( - parent_job.user, parent_job.import_data.get("blocked_users") - ) + +# utilities +########### def update_followers_address(user, field): @@ -433,19 +758,21 @@ def update_followers_address(user, field): def is_alias(user, remote_id): - """check that the user is listed as movedTo or also_known_as - in the remote user's profile""" + """check that the user is listed as moved_to + or also_known_as in the remote user's profile""" + + if not remote_id: + return False remote_user = activitypub.resolve_remote_id( remote_id=remote_id, model=models.User, save=False ) if remote_user: - - if remote_user.moved_to: + if getattr(remote_user, "moved_to", None) is not None: return user.remote_id == remote_user.moved_to - if remote_user.also_known_as: + if hasattr(remote_user, "also_known_as"): return user in remote_user.also_known_as.all() return False diff --git a/bookwyrm/models/connector.py b/bookwyrm/models/connector.py index f4b5be04c0..d62f97f02e 100644 --- a/bookwyrm/models/connector.py +++ b/bookwyrm/models/connector.py @@ -1,4 +1,6 @@ """ manages interfaces with external sources of book data """ +from typing import Optional + from django.db import models from bookwyrm.connectors.settings import CONNECTORS @@ -29,3 +31,34 @@ class Connector(BookWyrmModel): def __str__(self): return f"{self.identifier} ({self.id})" + + def deactivate(self, reason: Optional[str] = None) -> None: + """Make an active connector inactive. We do not delete connectors + because they have books and authors associated with them.""" + + self.active = False + self.deactivation_reason = reason + self.save(update_fields=["active", "deactivation_reason"]) + + def activate(self) -> None: + """Make an inactive connector active again""" + + self.active = True + self.deactivation_reason = None + self.save(update_fields=["active", "deactivation_reason"]) + + def change_priority(self, priority: int) -> None: + """Change the priority value for a connector + This determines the order they appear in book search""" + + self.priority = priority + self.save(update_fields=["priority"]) + + def update(self) -> None: + """Update the settings for this connector. e.g. if the + API endpoints change.""" + + # example + # if self.identifier == "openlibrary.org": + # self.isbn_search_url = "https://openlibrary.org/search.json?isbn=" + # self.save(update_fields=["isbn_search_url"]) diff --git a/bookwyrm/models/fields.py b/bookwyrm/models/fields.py index 6643bdc193..3cf455603e 100644 --- a/bookwyrm/models/fields.py +++ b/bookwyrm/models/fields.py @@ -25,7 +25,7 @@ PartialDateModel, from_partial_isoformat, ) -from bookwyrm.settings import MEDIA_FULL_URL +from bookwyrm.settings import MEDIA_FULL_URL, DATA_UPLOAD_MAX_MEMORY_SIZE def validate_remote_id(value): @@ -86,7 +86,9 @@ def set_field_from_activity( raise value = getattr(data, "actor") formatted = self.field_from_activity( - value, allow_external_connections=allow_external_connections + value, + allow_external_connections=allow_external_connections, + trigger=instance, ) if formatted is None or formatted is MISSING or formatted == {}: return False @@ -128,7 +130,7 @@ def field_to_activity(self, value): return value # pylint: disable=unused-argument - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): """formatter to convert activitypub into a model value""" if value and hasattr(self, "activitypub_wrapper"): value = value.get(self.activitypub_wrapper) @@ -150,7 +152,9 @@ def __init__(self, *args, load_remote=True, **kwargs): self.load_remote = load_remote super().__init__(*args, **kwargs) - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): + """trigger: the object that triggered this deserialization. + For example the Edition for which self is the parent Work""" if not value: return None @@ -160,7 +164,7 @@ def field_from_activity(self, value, allow_external_connections=True): # only look in the local database return related_model.find_existing(value.serialize()) # this is an activitypub object, which we can deserialize - return value.to_model(model=related_model) + return value.to_model(model=related_model, trigger=trigger) try: # make sure the value looks like a remote id validate_remote_id(value) @@ -193,8 +197,7 @@ class UsernameField(ActivitypubFieldMixin, models.CharField): def __init__(self, activitypub_field="preferredUsername", **kwargs): self.activitypub_field = activitypub_field - # I don't totally know why pylint is mad at this, but it makes it work - super(ActivitypubFieldMixin, self).__init__( # pylint: disable=bad-super-call + super(ActivitypubFieldMixin, self).__init__( _("username"), max_length=150, unique=True, @@ -234,7 +237,6 @@ class PrivacyField(ActivitypubFieldMixin, models.CharField): def __init__(self, *args, **kwargs): super().__init__(*args, max_length=255, choices=PrivacyLevels, default="public") - # pylint: disable=invalid-name def set_field_from_activity( self, instance, data, overwrite=True, allow_external_connections=True ): @@ -276,7 +278,6 @@ def set_activity_from_field(self, activity, instance): if hasattr(instance, "mention_users"): mentions = [u.remote_id for u in instance.mention_users.all()] # this is a link to the followers list - # pylint: disable=protected-access followers = instance.user.followers_url if instance.privacy == "public": activity["to"] = [self.public] @@ -292,7 +293,10 @@ def set_activity_from_field(self, activity, instance): activity["cc"] = [] -class ForeignKey(ActivitypubRelatedFieldMixin, models.ForeignKey): +class ForeignKey( # pylint: disable=abstract-method + ActivitypubRelatedFieldMixin, + models.ForeignKey, +): """activitypub-aware foreign key field""" def field_to_activity(self, value): @@ -301,7 +305,9 @@ def field_to_activity(self, value): return value.remote_id -class OneToOneField(ActivitypubRelatedFieldMixin, models.OneToOneField): +class OneToOneField( # pylint: disable=abstract-method + ActivitypubRelatedFieldMixin, models.OneToOneField +): """activitypub-aware foreign key field""" def field_to_activity(self, value): @@ -310,7 +316,9 @@ def field_to_activity(self, value): return value.to_activity() -class ManyToManyField(ActivitypubFieldMixin, models.ManyToManyField): +class ManyToManyField( # pylint: disable=abstract-method + ActivitypubFieldMixin, models.ManyToManyField +): """activitypub-aware many to many field""" def __init__(self, *args, link_only=False, **kwargs): @@ -339,7 +347,7 @@ def field_to_activity(self, value): return f"{value.instance.remote_id}/{self.name}" return [i.remote_id for i in value.all()] - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): if value is None or value is MISSING: return None if not isinstance(value, list): @@ -361,7 +369,7 @@ def field_from_activity(self, value, allow_external_connections=True): return items -class TagField(ManyToManyField): +class TagField(ManyToManyField): # pylint: disable=abstract-method """special case of many to many that uses Tags""" def __init__(self, *args, **kwargs): @@ -389,7 +397,7 @@ def field_to_activity(self, value): ) return tags - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): if not isinstance(value, list): # GoToSocial DMs and single-user mentions are # sent as objects, not as an array of objects @@ -430,6 +438,16 @@ class ClearableFileInputWithWarning(ClearableFileInput): template_name = "widgets/clearable_file_input_with_warning.html" + def get_context(self, name, value, attrs): + context = super().get_context(name, value, attrs) + context["widget"]["attrs"].update( + { + "data-max-upload": DATA_UPLOAD_MAX_MEMORY_SIZE, + "max_mb": DATA_UPLOAD_MAX_MEMORY_SIZE >> 20, + } + ) + return context + class CustomImageField(DjangoImageField): """overwrites image field for form""" @@ -444,7 +462,7 @@ def __init__(self, *args, alt_field=None, **kwargs): self.alt_field = alt_field super().__init__(*args, **kwargs) - # pylint: disable=arguments-differ,arguments-renamed,too-many-arguments + # pylint: disable=arguments-renamed,too-many-arguments def set_field_from_activity( self, instance, data, save=True, overwrite=True, allow_external_connections=True ): @@ -484,7 +502,7 @@ def field_to_activity(self, value, alt=None): return activitypub.Image(url=url, name=alt) - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): image_slug = value # when it's an inline image (User avatar/icon, Book cover), it's a json # blob, but when it's an attached image, it's just a url @@ -541,7 +559,7 @@ def field_to_activity(self, value): return None return value.isoformat() - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): missing_fields = datetime(1970, 1, 1) # "2022-10" => "2022-10-01" try: date_value = dateutil.parser.parse(value, default=missing_fields) @@ -559,7 +577,7 @@ class PartialDateField(ActivitypubFieldMixin, PartialDateModel): def field_to_activity(self, value) -> str: return value.partial_isoformat() if value else None - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): # pylint: disable=no-else-return try: return from_partial_isoformat(value) @@ -587,7 +605,7 @@ def field_from_activity(self, value, allow_external_connections=True): class HtmlField(ActivitypubFieldMixin, models.TextField): """a text field for storing html""" - def field_from_activity(self, value, allow_external_connections=True): + def field_from_activity(self, value, allow_external_connections=True, trigger=None): if not value or value == MISSING: return None return clean(value) diff --git a/bookwyrm/models/housekeeping.py b/bookwyrm/models/housekeeping.py new file mode 100644 index 0000000000..e89887785e --- /dev/null +++ b/bookwyrm/models/housekeeping.py @@ -0,0 +1,97 @@ +""" cleanup tasks """ +import math +from datetime import datetime, timedelta, timezone + +from django.db.models import DateTimeField, IntegerField + +from bookwyrm.tasks import app, MISC +from bookwyrm import models +from bookwyrm.models.job import ParentJob, ParentTask + + +class CleanUpUserExportFilesJob(ParentJob): + """A job to clean up old import and export files""" + + expiry_date = DateTimeField() + tasks = IntegerField(default=0) + completed_tasks = IntegerField(default=0) + + @property + def percent_complete(self): + """How far along?""" + + if not self.tasks: + return 0 + return math.floor(self.completed_tasks / self.tasks * 100) + + def start_job(self): + """schedule the tasks""" + + self.set_status("active") + + export_jobs = models.BookwyrmExportJob.objects.filter( + complete=True, updated_date__lt=self.expiry_date + ) + + import_jobs = models.BookwyrmImportJob.objects.filter( + complete=True, updated_date__lt=self.expiry_date + ) + + for export in export_jobs: + if export.export_data.name: + self.tasks += 1 + self.save(update_fields=["tasks"]) + delete_user_export_file_task.delay(job_id=self.id, export_id=export.id) + + for job in import_jobs: + if job.archive_file.name: + self.tasks += 1 + self.save(update_fields=["tasks"]) + delete_user_export_file_task.delay(job_id=self.id, import_id=job.id) + + if self.tasks == 0: + self.complete_job() + + +class CleanUpExportsTask(ParentTask): + """Task to delete expired user export files""" + + # pylint: disable=too-many-arguments, unused-argument, no-self-use + def after_return(self, status, retval, task_id, args, kwargs, einfo): + """Handler called after the task returns""" + + job = CleanUpUserExportFilesJob.objects.get(id=kwargs["job_id"]) + job.completed_tasks += 1 + job.save(update_fields=["completed_tasks"]) + + if job.completed_tasks == job.tasks: + job.complete_job() + + +@app.task(queue=MISC, base=CleanUpExportsTask) +def delete_user_export_file_task(**kwargs): + """A task to delete a specific export/import file""" + + if kwargs.get("import_id"): + file = models.BookwyrmImportJob.objects.get(id=kwargs["import_id"]) + file.archive_file.delete() + + else: + export_id = kwargs.get("export_id") + if export_id: + file = models.BookwyrmExportJob.objects.get(id=export_id) + file.export_data.delete() + + +@app.task(queue=MISC) +def start_export_deletions(**kwargs): + """trigger the job from scheduler""" + + user = models.User.objects.get(id=kwargs["user"]) + site = models.SiteSettings.objects.get() + hours = site.export_files_lifetime_hours + + expiry_date = datetime.now(timezone.utc) - timedelta(hours=hours) + job = CleanUpUserExportFilesJob.objects.create(user=user, expiry_date=expiry_date) + + job.start_job() diff --git a/bookwyrm/models/import_job.py b/bookwyrm/models/import_job.py index f5d86ad2e8..5a6ba3f512 100644 --- a/bookwyrm/models/import_job.py +++ b/bookwyrm/models/import_job.py @@ -4,6 +4,7 @@ import re import dateutil.parser +from django.core.exceptions import ObjectDoesNotExist from django.db import models from django.utils import timezone from django.utils.translation import gettext_lazy as _ @@ -59,6 +60,7 @@ class ImportJob(models.Model): created_date = models.DateTimeField(default=timezone.now) updated_date = models.DateTimeField(default=timezone.now) include_reviews: bool = models.BooleanField(default=True) + create_shelves: bool = models.BooleanField(default=True) mappings = models.JSONField() source = models.CharField(max_length=100) privacy = models.CharField(max_length=255, default="public", choices=PrivacyLevels) @@ -245,11 +247,26 @@ def shelf(self): """the goodreads shelf field""" return self.normalized_data.get("shelf") + @property + def shelf_name(self): + """the goodreads shelf field""" + return self.normalized_data.get("shelf_name") + @property def review(self): """a user-written review, to be imported with the book data""" return self.normalized_data.get("review_body") + @property + def review_name(self): + """a user-written review name, to be imported with the book data""" + return self.normalized_data.get("review_name") + + @property + def review_published(self): + """date the review was published - included in BookWyrm export csv""" + return self.normalized_data.get("review_published", None) + @property def rating(self): """x/5 star rating for a book""" @@ -352,7 +369,7 @@ def import_item_task(item_id): try: item.resolve() - except Exception as err: # pylint: disable=broad-except + except Exception as err: item.fail_reason = _("Error loading book") item.save() item.update_job() @@ -368,7 +385,7 @@ def import_item_task(item_id): item.update_job() -def handle_imported_book(item): +def handle_imported_book(item): # pylint: disable=too-many-branches """process a csv and then post about it""" job = item.job if job.complete: @@ -385,13 +402,31 @@ def handle_imported_book(item): item.book = item.book.edition existing_shelf = ShelfBook.objects.filter(book=item.book, user=user).exists() + if job.create_shelves and item.shelf and not existing_shelf: + # shelve the book if it hasn't been shelved already - # shelve the book if it hasn't been shelved already - if item.shelf and not existing_shelf: - desired_shelf = Shelf.objects.get(identifier=item.shelf, user=user) shelved_date = item.date_added or timezone.now() + shelfname = getattr(item, "shelf_name", item.shelf) + + try: + shelf = Shelf.objects.get(name=shelfname, user=user) + except ObjectDoesNotExist: + try: + shelf = Shelf.objects.get(identifier=item.shelf, user=user) + except ObjectDoesNotExist: + + shelf = Shelf.objects.create( + user=user, + identifier=item.shelf, + name=shelfname, + privacy=job.privacy, + ) + ShelfBook( - book=item.book, shelf=desired_shelf, user=user, shelved_date=shelved_date + book=item.book, + shelf=shelf, + user=user, + shelved_date=shelved_date, ).save(priority=IMPORT_TRIGGERED) for read in item.reads: @@ -408,19 +443,25 @@ def handle_imported_book(item): read.save() if job.include_reviews and (item.rating or item.review) and not item.linked_review: - # we don't know the publication date of the review, - # but "now" is a bad guess - published_date_guess = item.date_read or item.date_added + # we don't necessarily know the publication date of the review, + # but "now" is a bad guess unless we have no choice + + published_date_guess = ( + item.review_published or item.date_read or item.date_added or timezone.now() + ) if item.review: + # pylint: disable=consider-using-f-string review_title = "Review of {!r} on {!r}".format( item.book.title, job.source, ) + review_name = getattr(item, "review_name", review_title) + review = Review.objects.filter( user=user, book=item.book, - name=review_title, + name=review_name, rating=item.rating, published_date=published_date_guess, ).first() @@ -428,7 +469,7 @@ def handle_imported_book(item): review = Review( user=user, book=item.book, - name=review_title, + name=review_name, content=item.review, rating=item.rating, published_date=published_date_guess, diff --git a/bookwyrm/models/job.py b/bookwyrm/models/job.py index 5a26535718..ff4895dc60 100644 --- a/bookwyrm/models/job.py +++ b/bookwyrm/models/job.py @@ -29,6 +29,7 @@ class Status(models.TextChoices): status = models.CharField( max_length=50, choices=Status.choices, default=Status.PENDING, null=True ) + fail_reason = models.TextField(null=True) class Meta: """Make it abstract""" @@ -133,7 +134,8 @@ def __terminate_pending_child_jobs(self): tasks = self.pending_child_jobs.filter(task_id__isnull=False).values_list( "task_id", flat=True ) - app.control.revoke(list(tasks)) + tasklist = [str(task) for task in list(tasks)] + app.control.revoke(tasklist) self.pending_child_jobs.update(status=self.Status.STOPPED) @@ -208,7 +210,7 @@ def before_start( job.task_id = task_id job.save(update_fields=["task_id"]) - if kwargs["no_children"]: + if kwargs.get("no_children"): job.set_status(ChildJob.Status.ACTIVE) def on_success( @@ -233,7 +235,7 @@ def on_success( None: The return value of this handler is ignored. """ - if kwargs["no_children"]: + if kwargs.get("no_children"): job = ParentJob.objects.get(id=kwargs["job_id"]) job.complete_job() @@ -247,7 +249,7 @@ class SubTask(app.Task): """ def before_start( - self, task_id, *args, **kwargs + self, task_id, args, kwargs ): # pylint: disable=no-self-use, unused-argument """Handler called before the task starts. Override. @@ -271,7 +273,7 @@ def before_start( child_job.set_status(ChildJob.Status.ACTIVE) def on_success( - self, retval, task_id, *args, **kwargs + self, retval, task_id, args, kwargs ): # pylint: disable=no-self-use, unused-argument """Run by the worker if the task executes successfully. Override. diff --git a/bookwyrm/models/readthrough.py b/bookwyrm/models/readthrough.py index 7700b4a87d..670b35821f 100644 --- a/bookwyrm/models/readthrough.py +++ b/bookwyrm/models/readthrough.py @@ -59,7 +59,7 @@ class Meta: constraints = [ models.CheckConstraint( - check=Q(finish_date__gte=F("start_date")), name="chronology" + condition=Q(finish_date__gte=F("start_date")), name="chronology" ) ] ordering = ("-start_date",) diff --git a/bookwyrm/models/relationship.py b/bookwyrm/models/relationship.py index 745ff78b67..c4344d812c 100644 --- a/bookwyrm/models/relationship.py +++ b/bookwyrm/models/relationship.py @@ -57,7 +57,7 @@ class Meta: fields=["user_subject", "user_object"], name="%(class)s_unique" ), models.CheckConstraint( - check=~models.Q(user_subject=models.F("user_object")), + condition=~models.Q(user_subject=models.F("user_object")), name="%(class)s_no_self", ), ] @@ -135,7 +135,7 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): status = "follow_request" activity_serializer = activitypub.Follow - def save(self, *args, broadcast=True, **kwargs): # pylint: disable=arguments-differ + def save(self, *args, broadcast=True, **kwargs): """make sure the follow or block relationship doesn't already exist""" # if there's a request for a follow that already exists, accept it # without changing the local database state diff --git a/bookwyrm/models/session.py b/bookwyrm/models/session.py new file mode 100644 index 0000000000..3de199d299 --- /dev/null +++ b/bookwyrm/models/session.py @@ -0,0 +1,53 @@ +""" functions for managing user sessions """ +from importlib import import_module +import ua_parser + +from django.conf import settings +from django.db import models +from django.utils.translation import gettext_lazy as _ + +from bookwyrm.models import User + +SessionStore = import_module(settings.SESSION_ENGINE).SessionStore + + +class UserSession(models.Model): + """A session for a logged-in user. We only use this model to save info about + a logged-in session when the user first logs in, so users can remove sessions + e.g. for devices they have lost.""" + + user = models.ForeignKey("User", on_delete=models.CASCADE, related_name="sessions") + session_key = models.CharField(max_length=40) + created_date = models.DateTimeField(auto_now_add=True) + operating_system = models.CharField(max_length=50) + browser_type = models.CharField(max_length=50) + # account for full IPv4-as-IPv6 strings, in case we need to + ip_address = models.CharField(max_length=45) + + def logout(self): + """log out the session and delete the UserSession""" + + s = SessionStore(session_key=self.session_key) + s.delete() + self.delete() + + +def create_user_session( + user_id: int, session_key: str, ip_address: str, agent_string: str = "" +): + """create a session object""" + + user = User.objects.get(id=user_id) + parsed = ua_parser.parse(agent_string) + unknown = _("Unknown") + system = getattr(parsed.os, "family", str(unknown)) + browser = getattr(parsed.user_agent, "family", str(unknown)) + + sess = UserSession( + user=user, + session_key=session_key, + operating_system=system, + browser_type=browser, + ip_address=ip_address, + ) + sess.save() diff --git a/bookwyrm/models/site.py b/bookwyrm/models/site.py index 6c2a73422b..31e77e7e2b 100644 --- a/bookwyrm/models/site.py +++ b/bookwyrm/models/site.py @@ -103,6 +103,7 @@ class SiteSettings(SiteModel): import_limit_reset = models.IntegerField(default=0) user_exports_enabled = models.BooleanField(default=False) user_import_time_limit = models.IntegerField(default=48) + export_files_lifetime_hours = models.IntegerField(default=72) field_tracker = FieldTracker(fields=["name", "instance_tagline", "logo"]) diff --git a/bookwyrm/models/status.py b/bookwyrm/models/status.py index 9dc60e6477..2b357ebd22 100644 --- a/bookwyrm/models/status.py +++ b/bookwyrm/models/status.py @@ -98,7 +98,7 @@ def save(self, *args, update_fields: Optional[Iterable[str]] = None, **kwargs): self.thread_id = self.id super().save(broadcast=False, update_fields=["thread_id"]) - def delete(self, *args, **kwargs): # pylint: disable=unused-argument + def delete(self, *args, **kwargs): """ "delete" a status""" if hasattr(self, "boosted_status"): # okay but if it's a boost really delete it @@ -213,7 +213,7 @@ def to_replies(self, **kwargs): **kwargs, ).serialize() - def to_activity_dataclass(self, pure=False): # pylint: disable=arguments-differ + def to_activity_dataclass(self, pure=False): """return tombstone if the status is deleted""" if self.deleted: return activitypub.Tombstone( diff --git a/bookwyrm/models/user.py b/bookwyrm/models/user.py index ed5c59e9c8..2f411fb5ad 100644 --- a/bookwyrm/models/user.py +++ b/bookwyrm/models/user.py @@ -1,5 +1,6 @@ """ database schema for user data """ import datetime +from importlib import import_module import re import zoneinfo from typing import Optional, Iterable @@ -7,6 +8,7 @@ from uuid import uuid4 from django.apps import apps +from django.conf import settings from django.contrib.auth.models import AbstractUser from django.contrib.postgres.fields import ArrayField as DjangoArrayField from django.core.exceptions import PermissionDenied, ObjectDoesNotExist @@ -31,6 +33,7 @@ from .federated_server import FederatedServer from . import fields +SessionStore = import_module(settings.SESSION_ENGINE).SessionStore FeedFilterChoices = [ ("review", _("Reviews")), @@ -141,7 +144,6 @@ class User(OrderedCollectionPageMixin, AbstractUser): hide_follows = fields.BooleanField(default=False) # migration fields - moved_to = fields.RemoteIdField( null=True, unique=False, activitypub_field="movedTo", deduplication_field=False ) @@ -158,6 +160,7 @@ class User(OrderedCollectionPageMixin, AbstractUser): show_suggested_users = models.BooleanField(default=True) discoverable = fields.BooleanField(default=False) show_guided_tour = models.BooleanField(default=True) + show_ratings = models.BooleanField(default=True) # feed options feed_status_types = DjangoArrayField( @@ -305,9 +308,10 @@ def to_following_activity(self, **kwargs): return self.to_ordered_collection( self.following.order_by("-updated_date").all(), remote_id=remote_id, + collection_only=True, id_only=True, **kwargs, - ) + ).serialize() def to_followers_activity(self, **kwargs): """activitypub followers list""" @@ -315,9 +319,10 @@ def to_followers_activity(self, **kwargs): return self.to_ordered_collection( self.followers.order_by("-updated_date").all(), remote_id=remote_id, + collection_only=True, id_only=True, **kwargs, - ) + ).serialize() def to_activity(self, **kwargs): """override default AP serializer to add context object @@ -409,7 +414,6 @@ def save(self, *args, update_fields: Optional[Iterable[str]] = None, **kwargs): def delete(self, *args, **kwargs): """We don't actually delete the database entry""" - # pylint: disable=attribute-defined-outside-init self.is_active = False self.allow_reactivation = False self.is_deleted = True @@ -452,7 +456,6 @@ def erase_user_statuses(self, broadcast=True): def deactivate(self): """Disable the user but allow them to reactivate""" - # pylint: disable=attribute-defined-outside-init self.is_active = False self.deactivation_reason = "self_deactivation" self.allow_reactivation = True @@ -460,7 +463,6 @@ def deactivate(self): def reactivate(self): """Now you want to come back, huh?""" - # pylint: disable=attribute-defined-outside-init if not self.allow_reactivation: return self.is_active = True @@ -512,6 +514,15 @@ def raise_not_editable(self, viewer): return raise PermissionDenied() + def refresh_user_sessions(self): + """Check sessions still exist + We delete them on logout but not when sessions expire""" + + cache_session = SessionStore() + for sess in self.sessions.all(): + if not cache_session.exists(session_key=sess.session_key): + sess.delete() + class KeyPair(ActivitypubMixin, BookWyrmModel): """public and private keys for a user""" diff --git a/bookwyrm/preview_images.py b/bookwyrm/preview_images.py index a213490abf..66d2e2d4b9 100644 --- a/bookwyrm/preview_images.py +++ b/bookwyrm/preview_images.py @@ -420,7 +420,6 @@ def save_and_cleanup(image, instance=None): return True -# pylint: disable=invalid-name @app.task(queue=IMAGES) def generate_site_preview_image_task(): """generate preview_image for the website""" @@ -445,7 +444,6 @@ def generate_site_preview_image_task(): save_and_cleanup(image, instance=site) -# pylint: disable=invalid-name @app.task(queue=IMAGES) def generate_edition_preview_image_task(book_id): """generate preview_image for a book""" diff --git a/bookwyrm/settings.py b/bookwyrm/settings.py index c2b9c8e859..008e183843 100644 --- a/bookwyrm/settings.py +++ b/bookwyrm/settings.py @@ -1,4 +1,5 @@ -""" bookwyrm settings and configuration """ +"""bookwyrm settings and configuration""" + import os from typing import AnyStr @@ -29,9 +30,7 @@ PAGE_LENGTH = env.int("PAGE_LENGTH", 15) DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English") -# TODO: extend maximum age to 1 year once termination of active sessions -# is implemented (see bookwyrm-social#2278, bookwyrm-social#3082). -SESSION_COOKIE_AGE = env.int("SESSION_COOKIE_AGE", 3600 * 24 * 30) # 1 month +SESSION_COOKIE_AGE = env.int("SESSION_COOKIE_AGE", 3600 * 24 * 365) # One year ...ish JS_CACHE = "8a89cad7" @@ -81,12 +80,14 @@ # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = env.bool("DEBUG", True) -USE_HTTPS = env.bool("USE_HTTPS", not DEBUG) +DEBUG = env.bool("DEBUG", False) # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = env("SECRET_KEY") -if not DEBUG and SECRET_KEY == "7(2w1sedok=aznpq)ta1mc4i%4h=xx@hxwx*o57ctsuml0x%fr": +SECRET_KEY = env("SECRET_KEY", None) +if not DEBUG and SECRET_KEY in [ + None, + "7(2w1sedok=aznpq)ta1mc4i%4h=xx@hxwx*o57ctsuml0x%fr", +]: raise ImproperlyConfigured("You must change the SECRET_KEY env variable") ALLOWED_HOSTS = env.list("ALLOWED_HOSTS", ["*"]) @@ -274,7 +275,7 @@ DATABASES = { "default": { - "ENGINE": "django.db.backends.postgresql_psycopg2", + "ENGINE": "django.db.backends.postgresql", "NAME": env("POSTGRES_DB", "bookwyrm"), "USER": env("POSTGRES_USER", "bookwyrm"), "PASSWORD": env("POSTGRES_PASSWORD", "bookwyrm"), @@ -293,15 +294,15 @@ AUTH_PASSWORD_VALIDATORS = [ { "NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator", - 'OPTIONS': { - 'max_similarity': .9, - } + "OPTIONS": { + "max_similarity": 0.9, + }, }, { "NAME": "django.contrib.auth.password_validation.MinimumLengthValidator", - 'OPTIONS': { - 'min_length': 16, - } + "OPTIONS": { + "min_length": 16, + }, }, { "NAME": "django.contrib.auth.password_validation.CommonPasswordValidator", @@ -342,8 +343,14 @@ ] LANGUAGE_ARTICLES = { - "English": {"the", "a", "an"}, - "Español (Spanish)": {"un", "una", "unos", "unas", "el", "la", "los", "las"}, + "en-us": { + "variants": ["english", "anglais", "inglés", "englanti"], + "articles": {"the", "a", "an"}, + }, + "es-es": { + "variants": ["spanish", "español", "espagnol", "espanja"], + "articles": {"un", "una", "unos", "unas", "el", "la", "los", "las"}, + }, } TIME_ZONE = "UTC" @@ -359,18 +366,24 @@ PROJECT_DIR = os.path.dirname(os.path.abspath(__file__)) CSP_ADDITIONAL_HOSTS = env.list("CSP_ADDITIONAL_HOSTS", []) +PORT = env.int("PORT", 80) -PROTOCOL = "http" -if USE_HTTPS: +if DOMAIN == "localhost": + # only run insecurely when testing on localhost + PROTOCOL = "http" + SESSION_COOKIE_SECURE = False + CSRF_COOKIE_SECURE = False + NETLOC = f"{DOMAIN}:{PORT}" +else: + # if we are not running on localhost, everything should be using https + # PORT should only be used to pass traffic to a reverse-proxy, not exposed externally + # so we don't need it here PROTOCOL = "https" SESSION_COOKIE_SECURE = True CSRF_COOKIE_SECURE = True - -PORT = env.int("PORT", 443 if USE_HTTPS else 80) -if (USE_HTTPS and PORT == 443) or (not USE_HTTPS and PORT == 80): NETLOC = DOMAIN -else: - NETLOC = f"{DOMAIN}:{PORT}" + SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https") + BASE_URL = f"{PROTOCOL}://{NETLOC}" CSRF_TRUSTED_ORIGINS = [BASE_URL] @@ -380,7 +393,6 @@ USE_S3 = env.bool("USE_S3", False) USE_AZURE = env.bool("USE_AZURE", False) -S3_SIGNED_URL_EXPIRY = env.int("S3_SIGNED_URL_EXPIRY", 900) if USE_S3: # AWS settings @@ -390,7 +402,7 @@ AWS_S3_CUSTOM_DOMAIN = env("AWS_S3_CUSTOM_DOMAIN", None) AWS_S3_REGION_NAME = env("AWS_S3_REGION_NAME", "") AWS_S3_ENDPOINT_URL = env("AWS_S3_ENDPOINT_URL", None) - AWS_DEFAULT_ACL = "public-read" + AWS_DEFAULT_ACL = env("AWS_DEFAULT_ACL", "public-read") AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"} AWS_S3_URL_PROTOCOL = env("AWS_S3_URL_PROTOCOL", f"{PROTOCOL}:") # Storages @@ -399,7 +411,7 @@ "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { "location": "images", - "default_acl": "public-read", + "default_acl": AWS_DEFAULT_ACL, "file_overwrite": False, }, }, @@ -407,15 +419,14 @@ "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { "location": "static", - "default_acl": "public-read", + "default_acl": AWS_DEFAULT_ACL, }, }, - "exports": { + "sass_processor": { "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { - "location": "images", - "default_acl": None, - "file_overwrite": False, + "location": "static", + "default_acl": AWS_DEFAULT_ACL, }, }, } @@ -461,9 +472,6 @@ "location": "static", }, }, - "exports": { - "BACKEND": None, # not implemented yet - }, } # Azure Static settings STATIC_LOCATION = "static" @@ -489,12 +497,6 @@ "staticfiles": { "BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage", }, - "exports": { - "BACKEND": "django.core.files.storage.FileSystemStorage", - "OPTIONS": { - "location": "exports", - }, - }, } # Static settings STATIC_URL = "/static/" @@ -506,6 +508,39 @@ CSP_DEFAULT_SRC = ["'self'"] + CSP_ADDITIONAL_HOSTS CSP_SCRIPT_SRC = ["'self'"] + CSP_ADDITIONAL_HOSTS +# storage of user export and import files +USE_S3_FOR_EXPORTS = env.bool("USE_S3_FOR_EXPORTS", False) + +# Must use a different bucket for exports +# This ensures we can secure use import/export files +# for S3 services without ACL (e.g. Backblaze B2 or Cloudflare R2) +S3_SIGNED_URL_EXPIRY = env.int("S3_SIGNED_URL_EXPIRY", 900) +if USE_S3_FOR_EXPORTS: + STORAGES["exports"] = { + "BACKEND": "storages.backends.s3.S3Storage", + "OPTIONS": { + "location": "exports", + "default_acl": "private", + "file_overwrite": False, + "object_parameters": {"CacheControl": "max-age=86400"}, + "access_key": env("EXPORTS_ACCESS_KEY_ID", env("AWS_ACCESS_KEY_ID")), + "secret_key": env( + "EXPORTS_SECRET_ACCESS_KEY", env("AWS_SECRET_ACCESS_KEY") + ), + "region_name": env("EXPORTS_S3_REGION_NAME", env("AWS_S3_REGION_NAME")), + "endpoint_url": env("EXPORTS_S3_ENDPOINT_URL", env("AWS_S3_ENDPOINT_URL")), + "custom_domain": env("EXPORTS_S3_CUSTOM_DOMAIN", None), + "bucket_name": env("EXPORTS_STORAGE_BUCKET_NAME"), + }, + } +else: + STORAGES["exports"] = { + "BACKEND": "django.core.files.storage.FileSystemStorage", + "OPTIONS": { + "location": "exports", + }, + } + CSP_INCLUDE_NONCE_IN = ["script-src"] OTEL_EXPORTER_OTLP_ENDPOINT = env("OTEL_EXPORTER_OTLP_ENDPOINT", None) @@ -516,10 +551,6 @@ TWO_FACTOR_LOGIN_MAX_SECONDS = env.int("TWO_FACTOR_LOGIN_MAX_SECONDS", 60) TWO_FACTOR_LOGIN_VALIDITY_WINDOW = env.int("TWO_FACTOR_LOGIN_VALIDITY_WINDOW", 2) -HTTP_X_FORWARDED_PROTO = env.bool("SECURE_PROXY_SSL_HEADER", False) -if HTTP_X_FORWARDED_PROTO: - SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https") - # Instance Actor for signing GET requests to "secure mode" # Mastodon servers. # Do not change this setting unless you already have an existing diff --git a/bookwyrm/signatures.py b/bookwyrm/signatures.py index 08780b7317..f59367b51e 100644 --- a/bookwyrm/signatures.py +++ b/bookwyrm/signatures.py @@ -6,7 +6,7 @@ from Crypto import Random from Crypto.PublicKey import RSA -from Crypto.Signature import pkcs1_15 # pylint: disable=no-name-in-module +from Crypto.Signature import pkcs1_15 from Crypto.Hash import SHA256 MAX_SIGNATURE_AGE = 300 @@ -84,7 +84,6 @@ def __init__(self, key_id, headers, signature): self.headers = headers self.signature = signature - # pylint: disable=invalid-name @classmethod def parse(cls, request): """extract and parse a signature from an http request""" diff --git a/bookwyrm/static/js/bookwyrm.js b/bookwyrm/static/js/bookwyrm.js index a2351a98cb..3088165d6f 100644 --- a/bookwyrm/static/js/bookwyrm.js +++ b/bookwyrm/static/js/bookwyrm.js @@ -3,7 +3,6 @@ let BookWyrm = new (class { constructor() { - this.MAX_FILE_SIZE_BYTES = 10 * 1000000; this.initOnDOMLoaded(); this.initRecurringTasks(); this.initEventListeners(); @@ -14,6 +13,10 @@ let BookWyrm = new (class { .querySelectorAll("[data-controls]") .forEach((button) => button.addEventListener("click", this.toggleAction.bind(this))); + document + .querySelectorAll("[data-disappear]") + .forEach((button) => button.addEventListener("click", this.hideSelf.bind(this))); + document .querySelectorAll(".interaction") .forEach((button) => button.addEventListener("submit", this.interact.bind(this))); @@ -181,6 +184,18 @@ let BookWyrm = new (class { this.addRemoveClass(visible, "is-hidden", true); } + /** + * Hide the element you just clicked + * + * @param {Event} event + * @return {undefined} + */ + hideSelf(event) { + let trigger = event.currentTarget; + + this.addRemoveClass(trigger, "is-hidden", true); + } + /** * Execute actions on targets based on triggers. * @@ -380,13 +395,14 @@ let BookWyrm = new (class { } disableIfTooLarge(eventOrElement) { - const { addRemoveClass, MAX_FILE_SIZE_BYTES } = this; + const { addRemoveClass } = this; const element = eventOrElement.currentTarget || eventOrElement; + const limit = element.dataset.maxUpload; const submits = element.form.querySelectorAll('[type="submit"]'); const warns = element.parentElement.querySelectorAll(".file-too-big"); const isTooBig = - element.files && element.files[0] && element.files[0].size > MAX_FILE_SIZE_BYTES; + element.files && limit && element.files[0] && element.files[0].size > limit; if (isTooBig) { submits.forEach((submitter) => (submitter.disabled = true)); diff --git a/bookwyrm/suggested_users.py b/bookwyrm/suggested_users.py index a13ee97fd0..3e1cf17bde 100644 --- a/bookwyrm/suggested_users.py +++ b/bookwyrm/suggested_users.py @@ -34,7 +34,6 @@ def store_id(self, user): # pylint: disable=no-self-use def get_counts_from_rank(self, rank): # pylint: disable=no-self-use """calculate mutuals count and shared books count from rank""" - # pylint: disable=c-extension-no-member return { "mutuals": math.floor(rank), # "shared_books": int(1 / (-1 * (rank % 1 - 1))) - 1, @@ -128,7 +127,6 @@ def get_annotated_users(viewer, *args, **kwargs): ), distinct=True, ), - # pylint: disable=line-too-long # shared_books=Count( # "shelfbook", # filter=Q( @@ -202,7 +200,7 @@ def update_suggestions_on_unfollow(sender, instance, **kwargs): @receiver(signals.post_save, sender=models.User) -# pylint: disable=unused-argument, too-many-arguments +# pylint: disable=unused-argument def update_user(sender, instance, created, update_fields=None, **kwargs): """an updated user, neat""" # a new user is found, create suggestions for them diff --git a/bookwyrm/telemetry/open_telemetry.py b/bookwyrm/telemetry/open_telemetry.py index 2a0168ff3b..f18b8b38c1 100644 --- a/bookwyrm/telemetry/open_telemetry.py +++ b/bookwyrm/telemetry/open_telemetry.py @@ -23,9 +23,9 @@ def instrumentDjango() -> None: def instrumentPostgres() -> None: - from opentelemetry.instrumentation.psycopg2 import Psycopg2Instrumentor + from opentelemetry.instrumentation.psycopg import PsycopgInstrumentor - Psycopg2Instrumentor().instrument() + PsycopgInstrumentor().instrument() def instrumentCelery() -> None: diff --git a/bookwyrm/templates/author/author.html b/bookwyrm/templates/author/author.html index e24a77dcd4..043f3fa54d 100644 --- a/bookwyrm/templates/author/author.html +++ b/bookwyrm/templates/author/author.html @@ -28,7 +28,7 @@

{{ author.name }}

{% firstof author.aliases author.born author.died as details %} - {% firstof author.wikipedia_link author.website author.openlibrary_key author.inventaire_id author.isni author.isfdb as links %} + {% firstof author.wikipedia_link author.website author.openlibrary_key author.inventaire_id author.isni author.isfdb author.wikidata as links %} {% if details or links %}
{% if details %} @@ -73,6 +73,14 @@

{% trans "External links" %}

{% endif %} + {% if author.wikidata %} +
+ + {% trans "View on Wikidata" %} + +
+ {% endif %} + {% if author.website %}
diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html index 83500a54b0..001a5f5bb0 100644 --- a/bookwyrm/templates/book/book.html +++ b/bookwyrm/templates/book/book.html @@ -13,6 +13,9 @@ {% include 'snippets/opengraph.html' with title=book.title description=book|book_description image=book_image %} {% endblock %} +{% block head_links %} + {% include 'snippets/dublincore.html' with book=book %} +{% endblock %} {% block content %} {% if update_error %}
@@ -181,6 +184,21 @@

{% endif %} + {% if book.finna_key %} +

+ + {% trans "View on Finna" %} + + + {% if request.user.is_authenticated and perms.bookwyrm.edit_book %} + + {% include "book/sync_modal.html" with source="api.finna.fi" source_name="Finna" id="finna_sync" %} + {% endif %} +

+ {% endif %}

@@ -194,7 +212,10 @@

> - + + {% if review_count > 0 %} + + {% endif %} {% include 'snippets/stars.html' with rating=rating %} @@ -204,6 +225,9 @@

({{ review_count }} reviews) {% endblocktrans %} + {% if review_count > 0 %} + + {% endif %}

{% with full=book|book_description itemprop='abstract' %} diff --git a/bookwyrm/templates/book/book_identifiers.html b/bookwyrm/templates/book/book_identifiers.html index d976f72c24..a288bae788 100644 --- a/bookwyrm/templates/book/book_identifiers.html +++ b/bookwyrm/templates/book/book_identifiers.html @@ -52,6 +52,13 @@
{{ book.goodreads_key }}
{% endif %} + + {% if book.finna_key %} +
+
{% trans "Finna ID:" %}
+
{{ book.finna_key}}
+
+ {% endif %} {% endif %} {% endspaceless %} diff --git a/bookwyrm/templates/book/edit/edit_book_form.html b/bookwyrm/templates/book/edit/edit_book_form.html index 30fb000499..31a7f25d3e 100644 --- a/bookwyrm/templates/book/edit/edit_book_form.html +++ b/bookwyrm/templates/book/edit/edit_book_form.html @@ -30,14 +30,16 @@

{% include 'snippets/form_errors.html' with errors_list=form.title.errors id="desc_title" %} + {% if form.sort_title.value %}
- + {% include 'snippets/form_errors.html' with errors_list=form.sort_title.errors id="desc_sort_title" %}
+ {% endif%}
+ +
+ + {{ form.finna_key }} + + {% include 'snippets/form_errors.html' with errors_list=form.finna_key.errors id="desc_finna_key" %} +
diff --git a/bookwyrm/templates/book/file_links/verification_modal.html b/bookwyrm/templates/book/file_links/verification_modal.html index 7a9e41ad21..4f2f96a4a9 100644 --- a/bookwyrm/templates/book/file_links/verification_modal.html +++ b/bookwyrm/templates/book/file_links/verification_modal.html @@ -21,9 +21,10 @@
{% trans "Report spam" %}
+{% endif %} {% trans "Continue" %} -{% endif %} + {% endblock %} diff --git a/bookwyrm/templates/compose.html b/bookwyrm/templates/compose.html index ca0d8296af..112088648c 100644 --- a/bookwyrm/templates/compose.html +++ b/bookwyrm/templates/compose.html @@ -2,10 +2,31 @@ {% load i18n %} {% load utilities %} -{% block title %}{% trans "Edit status" %}{% endblock %} +{% block title %} + {% if draft.status_type == "Review" %} + {% trans "Edit review" %} + {% elif draft.status_type == "Quotation" %} + {% trans "Edit quote" %} + {% elif draft.status_type == "Comment" %} + {% trans "Edit comment" %} + {% else %} + {% trans "Edit status" %} + {% endif %} +{% endblock %} + {% block content %}
-

{% trans "Edit status" %}

+

+ {% if draft.status_type == "Review" %} + {% trans "Edit review" %} + {% elif draft.status_type == "Quotation" %} + {% trans "Edit quote" %} + {% elif draft.status_type == "Comment" %} + {% trans "Edit comment" %} + {% else %} + {% trans "Edit status" %} + {% endif %} +

{% with 0|uuid as uuid %} diff --git a/bookwyrm/templates/import/import.html b/bookwyrm/templates/import/import.html index 01014fa94b..a78dc30f6a 100644 --- a/bookwyrm/templates/import/import.html +++ b/bookwyrm/templates/import/import.html @@ -66,9 +66,15 @@ + + @@ -93,9 +99,14 @@ {% trans "Include reviews" %} +
+ +
{% include 'snippets/privacy_select.html' with no_label=True privacy_uuid="import" %}
diff --git a/bookwyrm/templates/import/import_user.html b/bookwyrm/templates/import/import_user.html index 70b21673cc..3468c74c02 100644 --- a/bookwyrm/templates/import/import_user.html +++ b/bookwyrm/templates/import/import_user.html @@ -29,10 +29,25 @@ {% elif next_available %}
-

{% blocktrans %}Currently you are allowed to import one user every {{ user_import_hours }} hours.{% endblocktrans %}

-

{% blocktrans %}You will next be able to import a user file at {{ next_available }}{% endblocktrans %}

+

{% blocktrans with hours=next_available.1 %}Currently you are allowed to import one user every {{ hours }} hours.{% endblocktrans %}

+

{% blocktrans with next_time=next_available.0 %}You will next be able to import a user file at {{ next_time }}{% endblocktrans %}

{% else %} + {% if recent_avg_hours or recent_avg_minutes %} +
+

+ {% if recent_avg_hours %} + {% blocktrans trimmed with hours=recent_avg_hours|floatformat:0|intcomma %} + On average, recent imports have taken {{ hours }} hours. + {% endblocktrans %} + {% else %} + {% blocktrans trimmed with minutes=recent_avg_minutes|floatformat:0|intcomma %} + On average, recent imports have taken {{ minutes }} minutes. + {% endblocktrans %} + {% endif %} +

+
+ {% endif %}
{% csrf_token %} @@ -186,10 +201,10 @@

{% trans "Recent Imports" %}

{% endif %} {% for job in jobs %} + {{ job.created_date }} -

{{ job.created_date }}

+

{{ job.updated_date }}

- {{ job.updated_date }} {% trans "Recent Imports" %}

{% elif job.status == "pending" %} class="tag is-warning" {% elif job.complete %} - class="tag" - {% else %} class="tag is-success" + {% else %} + class="tag" {% endif %} > {% if job.status %} - {{ job.status }} - {{ job.status_display }} + {{ job.get_status_display }} {% elif job.complete %} {% trans "Complete" %} {% else %} diff --git a/bookwyrm/templates/import/user_import_status.html b/bookwyrm/templates/import/user_import_status.html new file mode 100644 index 0000000000..6f5cf21166 --- /dev/null +++ b/bookwyrm/templates/import/user_import_status.html @@ -0,0 +1,210 @@ +{% extends 'layout.html' %} +{% load i18n %} +{% load humanize %} +{% load static %} + +{% block title %}{% trans "User Import Status" %}{% endblock %} + +{% block content %}{% spaceless %} +
+

+ {% block page_title %} + {% if job.retry %} + {% trans "User Import Retry Status" %} + {% else %} + {% trans "User Import Status" %} + {% endif %} + {% endblock %} +

+ + + +
+
+
{% trans "Import started:" %}
+
{{ job.created_date | naturaltime }}
+
Import Job Status:
+
+ + {% if job.status %} + {{ job.status }} + {{ job.status_display }} + {% elif job.complete %} + {% trans "Complete" %} + {% else %} + {% trans "Active" %} + {% endif %} + +
+
+
+ {% block import_counts %} +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
{% trans "Imported" %}{% trans "Failed" %}{% trans "Total" %}
{% trans "Books" %}{{ completed_books_count }}{{ failed_books_count }}{{ book_jobs_count }}
{% trans "Statuses" %}{{ completed_statuses_count }}{{ failed_statuses_count }}{{ status_jobs_count }}
{% trans "Follows & Blocks" %}{{ completed_relationships_count }}{{ failed_relationships_count }}{{ relationship_jobs_count }}
+
+
+ {% endblock %} + + {% if job.status == "active" and show_progress %} +
+
+ + {% trans "In progress" %} + + {% trans "Refresh" %} + +
+
+ + {{ percent }} % + + {{ percent }}% +
+
+ {% endif %} + + {% if not job.complete %} + + {% csrf_token %} + + + {% endif %} + + {% if job.complete and fail_count and not job.retry %} +
+ {% blocktrans trimmed count counter=fail_count with display_counter=fail_count|intcomma %} + {{ display_counter }} item failed to import. + {% plural %} + {{ display_counter }} items failed to import. + {% endblocktrans %} + + {% trans "View and troubleshoot failed items" %} + +
+ {% endif %} +
+ +
+ {% block actions %}{% endblock %} + {% block item_list %} +

{% trans "Imported books" %}

+
+ + + + + + {% block import_cols_headers %} + + + {% endblock %} + + {% for item in items %} + + + + + {% block import_cols %} + + + {% endblock %} + + {% block action_row %}{% endblock %} + {% endfor %} +
+ {% trans "Title" %} + + {% trans "ISBN" %} + + {% trans "Authors" %} + + {% trans "Book" %} + + {% trans "Status" %} +
+ {{ item.book_data.edition.title }} + + {{ item.book_data.edition.isbn13|default:'' }} + + + {% for author in item.book_data.authors %} +

{{ author.name }}

+ {% endfor %} +
+ {% if item.book %} + + {% include 'snippets/book_cover.html' with book=item.book cover_class='is-h-s' size='small' %} + + {% endif %} + + {% if item.book %} + + {% trans "Imported" %} + {% else %} +
+ {{ item.status }} +
+ {% endif %} +
+
+ {% endblock %} +
+ +
+ {% include 'snippets/pagination.html' with page=items path=page_path %} +
+{% endspaceless %}{% endblock %} diff --git a/bookwyrm/templates/import/user_troubleshoot.html b/bookwyrm/templates/import/user_troubleshoot.html new file mode 100644 index 0000000000..4923859483 --- /dev/null +++ b/bookwyrm/templates/import/user_troubleshoot.html @@ -0,0 +1,97 @@ +{% extends 'import/user_import_status.html' %} +{% load i18n %} +{% load utilities %} + +{% block title %}{% trans "User Import Troubleshooting" %}{% endblock %} + +{% block page_title %} +{% trans "Failed items" %} +{% endblock %} + +{% block breadcrumbs %} +
  • + {% trans "Troubleshooting" %} +
  • +{% endblock %} + +{% block import_counts %}{% endblock %} + +{% block actions %} +
    +
    +

    + {% trans "Re-trying an import can fix missing items in cases such as:" %} +

    + +

    + {% trans "Re-trying an import will not work in cases such as:" %} +

    + +

    + {% trans "Contact your admin or open an issue if you are seeing unexpected failed items." %} +

    +
    + {% if next_available %} +
    +

    {% blocktrans with hours=next_available.1 %}Currently you are allowed to import or retry one user every {{ hours }} hours.{% endblocktrans %}

    +

    {% blocktrans with next_time=next_available.0 %}You will be able to retry this import at {{ next_time }}{% endblocktrans %}

    +
    + {% else %} +
    + {% csrf_token %} + +
    + {% endif %} +
    +{% endblock %} +{% block item_list %} +
    + + + + + + + + {% for item in items %} + + + + + + + {% endfor %} +
    + {% trans "Book" %} + + {% trans "Status" %} + + {% trans "Relationship" %} + + {% trans "Reason" %} +
    {% if item.userimportbook %}{{ item.userimportbook.book.title }}{% else %} {{ item.userimportpost.book.title }}{% endif %} + {{ item.userimportpost.json.type }}
    + {% if item.userimportpost.json.quote %} +
    {{ item.userimportpost.json.quote|safe }}
    + {% endif %} + {{ item.userimportpost.json.content|safe }} +
    {% id_to_username item.userimportrelationship.remote_id True %} + {% if item.fail_reason == "unauthorized" %} + Not authorized to import statuses + {% elif item.fail_reason == "connection_error" %} + Could not connect to remote identity + {% elif item.fail_reason == "invalid_relationship" %} + Invalid relationship type - please log an issue + {% else %} + Unknown error + {% endif %} +
    +
    +{% endblock %} \ No newline at end of file diff --git a/bookwyrm/templates/notifications/items/link_domain.html b/bookwyrm/templates/notifications/items/link_domain.html index aaed830ed4..9e87b59a6a 100644 --- a/bookwyrm/templates/notifications/items/link_domain.html +++ b/bookwyrm/templates/notifications/items/link_domain.html @@ -15,6 +15,6 @@ {% blocktrans trimmed count counter=notification.related_link_domains.count with display_count=notification.related_link_domains.count|intcomma %} A new link domain needs review {% plural %} - {{ display_count }} new link domains need moderation + {{ display_count }} new link domains need review {% endblocktrans %} {% endblock %} diff --git a/bookwyrm/templates/ostatus/remote_follow.html b/bookwyrm/templates/ostatus/remote_follow.html index ca47c529be..c54e6bfa76 100644 --- a/bookwyrm/templates/ostatus/remote_follow.html +++ b/bookwyrm/templates/ostatus/remote_follow.html @@ -3,8 +3,10 @@ {% load utilities %} {% block heading %} +{% block title %} {% blocktrans with username=user.localname sitename=site.name %}Follow {{ username }} on the fediverse{% endblocktrans %} {% endblock %} +{% endblock %} {% block content %}
    diff --git a/bookwyrm/templates/ostatus/success.html b/bookwyrm/templates/ostatus/success.html index 66577e83f6..c2b8edd75b 100644 --- a/bookwyrm/templates/ostatus/success.html +++ b/bookwyrm/templates/ostatus/success.html @@ -2,6 +2,10 @@ {% load i18n %} {% load utilities %} +{% block title %} +{% blocktrans with display_name=user.display_name %}You are now following {{ display_name }}!{% endblocktrans %} +{% endblock %} + {% block content %}
    diff --git a/bookwyrm/templates/preferences/edit_user.html b/bookwyrm/templates/preferences/edit_user.html index f2b14babf2..c10bc1ee40 100644 --- a/bookwyrm/templates/preferences/edit_user.html +++ b/bookwyrm/templates/preferences/edit_user.html @@ -69,6 +69,12 @@

    {% trans "Display" %}

    {% trans "Show reading goal prompt in feed" %}
    +
    + +
    +{% endif %} {% endblock %} diff --git a/bookwyrm/templates/rss/edition.html b/bookwyrm/templates/rss/edition.html new file mode 100644 index 0000000000..db65b13336 --- /dev/null +++ b/bookwyrm/templates/rss/edition.html @@ -0,0 +1,10 @@ +{% load i18n %} +{% load shelf_tags %} +‘{{ obj.title }}’ {% if obj.author_text %} by {{obj.author_text}} {% endif %} +

    {{ obj.description|default_if_none:obj.parent_work.description}}

    +{% if obj.isbn_13 %}{% trans "ISBN 13:" %} {{ obj.isbn_13 }}
    {% endif %} +{% if obj.oclc_number %}{% trans "OCLC Number:" %} {{ obj.oclc_number }}
    {% endif %} +{% if obj.asin %}{% trans "ASIN:" %} {{ obj.asin }}
    {% endif %} +{% if obj.aasin %}{% trans "Audible ASIN:" %} {{ obj.aasin }}
    {% endif %} +{% if obj.isfdb %}{% trans "ISFDB ID:" %} {{ obj.isfdb }}
    {% endif %} +{% if obj.goodreads_key %}{% trans "Goodreads:" %} {{ obj.goodreads_key }}{% endif %} diff --git a/bookwyrm/templates/search/author.html b/bookwyrm/templates/search/author.html index d42c3b54f4..94824f2fda 100644 --- a/bookwyrm/templates/search/author.html +++ b/bookwyrm/templates/search/author.html @@ -8,6 +8,9 @@
  • {% endfor %} diff --git a/bookwyrm/templates/settings/connectors/available.html b/bookwyrm/templates/settings/connectors/available.html new file mode 100644 index 0000000000..536d3d3176 --- /dev/null +++ b/bookwyrm/templates/settings/connectors/available.html @@ -0,0 +1,32 @@ +{% load i18n %} + +
  • +
    +
    +

    + {% if connector == "finna" %} + Finna + {% endif %} +

    +
    +
    +

    + {% if connector == "finna" %} + {% trans "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." %} + {% endif %} +

    +
    + +
    +
  • \ No newline at end of file diff --git a/bookwyrm/templates/settings/connectors/connector.html b/bookwyrm/templates/settings/connectors/connector.html new file mode 100644 index 0000000000..70eec0c00c --- /dev/null +++ b/bookwyrm/templates/settings/connectors/connector.html @@ -0,0 +1,66 @@ +{% load i18n %} + +
  • +
    +
    +

    + {% if connector.name %}{{connector.name}} - {% endif %}{{connector.identifier}} +

    +
    + +
    +
  • \ No newline at end of file diff --git a/bookwyrm/templates/settings/connectors/connectors.html b/bookwyrm/templates/settings/connectors/connectors.html new file mode 100644 index 0000000000..ff45f97c3c --- /dev/null +++ b/bookwyrm/templates/settings/connectors/connectors.html @@ -0,0 +1,38 @@ +{% extends 'settings/layout.html' %} +{% load i18n %} + +{% block title %}{% trans "Connector Settings" %}{% endblock %} + +{% block header %}{% trans "Connector Settings" %}{% endblock %} + +{% block panel %} +
    +
    +

    {% trans "Connectors are sources of data about books and authors." %}

    +

    {% trans "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." %}

    +

    + {% trans "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" %} {% trans "Federated Instances" %}. +

    +

    External Connectors

    +
      + {% for connector in update_connectors %} + {% include "settings/connectors/update.html" %} + {% endfor %} + {% for connector in other_connectors %} + {% include "settings/connectors/connector.html" %} + {% endfor %} + {% if available_connectors %} + {% for connector in available_connectors %} + {% include "settings/connectors/available.html" %} + {% endfor %} + {% endif%} +
    +

    BookWyrm Connectors

    +
      + {% for connector in bookwyrm_connectors %} + {% include "settings/connectors/connector.html" %} + {% endfor %} +
    +
    +
    +{% endblock %} diff --git a/bookwyrm/templates/settings/connectors/update.html b/bookwyrm/templates/settings/connectors/update.html new file mode 100644 index 0000000000..87eb37f1d9 --- /dev/null +++ b/bookwyrm/templates/settings/connectors/update.html @@ -0,0 +1,84 @@ +{% load i18n %} + +
  • +
    +
    + + {% if connector.name %}{{connector.name}} - {% endif %}{{connector.identifier}} +
    + + +
    +
  • \ No newline at end of file diff --git a/bookwyrm/templates/settings/files.html b/bookwyrm/templates/settings/files.html new file mode 100644 index 0000000000..39b3d26ca5 --- /dev/null +++ b/bookwyrm/templates/settings/files.html @@ -0,0 +1,215 @@ +{% extends 'settings/layout.html' %} +{% load i18n %} +{% load humanize %} +{% load utilities %} + +{% block title %} +{% trans "Files maintenance" %} +{% endblock %} + +{% block header %} +{% trans "Files maintenance" %} +{% endblock %} + +{% block panel %} + +
    +

    {% trans "Schedule file deletion" %}

    +
    +
    +

    + {% trans "This job deletes uploaded user export and import files that have reached the expiry age." %} +

    +
    +
    + {% if delete_task %} +
    +
    + {% trans "Schedule:" %} +
    +
    + {{ delete_task.schedule }} +
    + +
    + {% trans "Last run:" %} +
    +
    + {{ delete_task.last_run_at|naturaltime }} +
    + +
    + {% trans "Total run count:" %} +
    +
    + {{ delete_task.total_run_count }} +
    + +
    + {% trans "Enabled:" %} +
    +
    + + {{ delete_task.enabled|yesno }} + +
    +
    + +
    +
    + {% csrf_token %} + +
    +
    + {% csrf_token %} + +

    {% trans "Last run date will not be updated" %}

    +
    +
    + {% else %} +
    + {% csrf_token %} +
    + +
    +
    + {{ task_form.every }} +
    +
    +

    + {{ task_form.every.help_text }} +

    +
    +
    + +
    + {{ task_form.period }} +
    +

    + {{ task_form.period.help_text }} +

    +
    + +
    + {% endif %} +
    +
    + +

    {% trans "Export file expiration" %}

    +
    +
    +
    + {% csrf_token %} +
    + + {% if expiry_form.hours.errors %} +
    + {{ expiry_form.hours.errors }} +
    + {% endif %} +
    +
    + +
    +
    +

    + {% trans "Files older than this will be deleted." %} +

    +
    + +
    +
    +
    + + {% if delete_jobs %} +
    +

    Recent jobs

    +
    + + + + + + + + + {% for job in delete_jobs %} + + + + + + + + {% endfor %} +
    {% trans "Date" %}{% trans "Status" %}{% trans "Expired files" %}{% trans "Progress" %}
    {{ job.updated_date }} + + {% if job.status %} + {{ job.get_status_display }} + {% elif job.complete %} + {% trans "Complete" %} + {% else %} + {% trans "Active" %} + {% endif %} + + {{ job.tasks }} + {% if not job.complete %} +
    + + {{ job.percent_complete }} % + + {{ job.percent_complete }}% +
    + {% endif %} + {% if job.status == "stopped" or job.status == "failed" %} + {{ job.get_status_display }} + {% else %} + {% trans 'Completed' %} + {% endif %} +
    + {% if not job.complete %} +
    + {% csrf_token %} + +
    + {% endif %} +
    +
    +
    + {% endif %} +
    + + +{% if success %} +
    + + + {% trans "Successfully updated expiry time" %} + +
    +{% endif %} + +{% endblock %} diff --git a/bookwyrm/templates/settings/layout.html b/bookwyrm/templates/settings/layout.html index 70c7ef0f47..489e77125c 100644 --- a/bookwyrm/templates/settings/layout.html +++ b/bookwyrm/templates/settings/layout.html @@ -58,7 +58,7 @@
  • {% url 'settings-automod' as url %} - {% trans "Auto-moderation rules" %} + {% trans "Auto-Moderation Rules" %}
  • {% url 'settings-email-blocks' as url %} @@ -83,16 +83,24 @@
  • {% url 'settings-celery' as url %} - {% trans "Celery status" %} + {% trans "Celery Status" %}
  • {% url 'settings-schedules' as url %} - {% trans "Scheduled tasks" %} + {% trans "Scheduled Tasks" %}
  • {% url 'settings-email-config' as url %} {% trans "Email Configuration" %}
  • +
  • + {% url 'settings-connectors' as url %} + {% trans "Connectors" %} +
  • +
  • + {% url 'settings-files' as url %} + {% trans "Files Maintenance" %} +
  • {% endif %} {% if perms.bookwyrm.edit_instance_settings %} diff --git a/bookwyrm/templates/setup/config.html b/bookwyrm/templates/setup/config.html index 0c49c6ac80..df489acd5d 100644 --- a/bookwyrm/templates/setup/config.html +++ b/bookwyrm/templates/setup/config.html @@ -35,13 +35,13 @@

    {% trans "Instance Configuration" %}

    {% endif %} - {% if warnings.protocol %} + {% if warnings.localhost %}
    {% blocktrans trimmed %} - You are running BookWyrm in production mode without https. - USE_HTTPS should be enabled in production. + You are running BookWyrm with localhost. + This should never be used in a production environment. {% endblocktrans %}
    @@ -58,18 +58,12 @@

    {% trans "Settings" %}

    {{ info.domain }}
    - -
    - {% trans "Protocol:" %} +
    + {% trans "Instance base URL:" %}
    - {% if info.use_https %} - https - {% else %} - http - {% endif %} + {{ info.base_url }}
    -
    {% trans "Software version:" %}
    @@ -126,12 +120,13 @@

    {% trans "Display" %}

    {% trans "Does everything look right?" %}

    -

    - {% blocktrans trimmed %} - This is your last chance to set your domain and protocol. - {% endblocktrans %} -

    - +
    +

    + {% blocktrans trimmed %} + This is your last chance to set your domain and protocol. + {% endblocktrans %} +

    +
    diff --git a/bookwyrm/templates/shelf/shelf.html b/bookwyrm/templates/shelf/shelf.html index 71f4bc088e..f80009e662 100644 --- a/bookwyrm/templates/shelf/shelf.html +++ b/bookwyrm/templates/shelf/shelf.html @@ -12,6 +12,11 @@ {% include 'snippets/opengraph.html' with image=user.preview_image %} {% endblock %} + +{% block head_links %} + +{% endblock %} + {% block content %}

    diff --git a/bookwyrm/templates/snippets/dublincore.html b/bookwyrm/templates/snippets/dublincore.html new file mode 100644 index 0000000000..ca8ae0b2c1 --- /dev/null +++ b/bookwyrm/templates/snippets/dublincore.html @@ -0,0 +1,34 @@ +{% spaceless %} +{% load static %} +{% load book_display_tags %} + +{% if book.isbn_13 %}{% endif %} +{% if book.oclc_number %}{% endif %} +{% if book.asin %}{% endif %} +{% if book.aasin %}{% endif %} +{% if book.isfdb %}{% endif %} +{% if book.goodreads_key %}{% endif %} +{% if book.finna_key %}{% endif %} +{% if book.languages %} +{% for language in book.languages %} + +{% endfor %} +{% endif %} + + +{% if book.subtitle %} + +{% endif %} +{% if book.publishers %} +{% for publisher in book.publishers %} + +{% endfor %} +{% endif %} +{% if book.published_date or book.first_published_date %} + +{% endif %} + +{% for author in book.authors.all %} + +{% endfor %} +{% endspaceless %} \ No newline at end of file diff --git a/bookwyrm/templates/snippets/form_errors.html b/bookwyrm/templates/snippets/form_errors.html index ecbf7ff8de..5b07b849b7 100644 --- a/bookwyrm/templates/snippets/form_errors.html +++ b/bookwyrm/templates/snippets/form_errors.html @@ -1,7 +1,7 @@ {% if errors_list %}
    {% for error in errors_list %} -

    +

    {{ error | escape }}

    {% endfor %} diff --git a/bookwyrm/templates/snippets/stars.html b/bookwyrm/templates/snippets/stars.html index 9911101511..70ccc37970 100644 --- a/bookwyrm/templates/snippets/stars.html +++ b/bookwyrm/templates/snippets/stars.html @@ -1,26 +1,43 @@ {% spaceless %} +{% load utilities %} {% load i18n %} - +{% with 0|uuid as uuid %} + + {% if rating %} - - {% blocktranslate trimmed with rating=rating|floatformat:0 count counter=rating|floatformat:0|add:0 %} - {{ rating }} star - {% plural %} - {{ rating }} stars - {% endblocktranslate %} + + {% if not request.user.show_ratings %} + + + + {% endif %} + + + + {% blocktranslate trimmed with rating=rating|floatformat:0 count counter=rating|floatformat:0|add:0 %} + {{ rating }} star + {% plural %} + {{ rating }} stars + {% endblocktranslate %} + + {% for i in '12345'|make_list %} + + {% endfor %} - {% for i in '12345'|make_list %} - - {% endfor %} + {% else %} {% trans "No rating" %} {% endif %} + +{% endwith %} {% endspaceless %} diff --git a/bookwyrm/templates/user/groups.html b/bookwyrm/templates/user/groups.html index d3b48c8497..871aac1670 100644 --- a/bookwyrm/templates/user/groups.html +++ b/bookwyrm/templates/user/groups.html @@ -30,9 +30,11 @@

    {% block panel %}
    + {% if request.user.is_authenticated %}
    {% include 'groups/create_form.html' with controls_text="create_group" %}
    + {% endif %} {% include 'groups/user_groups.html' with memberships=memberships %}
    diff --git a/bookwyrm/templates/widgets/clearable_file_input_with_warning.html b/bookwyrm/templates/widgets/clearable_file_input_with_warning.html index 6370ba3909..0697d2318e 100644 --- a/bookwyrm/templates/widgets/clearable_file_input_with_warning.html +++ b/bookwyrm/templates/widgets/clearable_file_input_with_warning.html @@ -24,8 +24,8 @@ {% endif %} -
    BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/ar_SA/LC_MESSAGES/django.mo b/locale/ar_SA/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..0adb07cc7f Binary files /dev/null and b/locale/ar_SA/LC_MESSAGES/django.mo differ diff --git a/locale/ar_SA/LC_MESSAGES/django.po b/locale/ar_SA/LC_MESSAGES/django.po new file mode 100644 index 0000000000..77c8f3e20a --- /dev/null +++ b/locale/ar_SA/LC_MESSAGES/django.po @@ -0,0 +1,7903 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-10-11 13:53\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Arabic\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ar\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "يوم واحد" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "أسبوع واحد" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "شهر واحد" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "لا تنتهي صلاحيتها" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "غير محدود" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "كلمة سر خاطئة" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "كلمة سر غير متطابقة" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "كلمة سر خاطئة" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "تاريخ انتهاء القراءة لا يقدر يكون قبل تاريخ بدايتها." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "تاريخ توقف القراءة لا يقدر يكون قبل تاريخ بدايتها." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "تاريخ انتهاء القراءة لا يقدر يكون في المستقبل." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "تاريخ انتهاء القراءة لا يقدر يكون في المستقبل." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "اسم المستخدم أو كلمة المرور غير صحيحة" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "مستخدم باسم المستخدم هذا موجود بالفعل" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "يوجد بالفعل مستخدم بهذا البريد الإلكتروني." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "لا يمكن تسجيل عنوان البريد الإلكتروني هذا." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "الرمز غير صحيح" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "هذا النطاق محظور. الرجاء الاتصال بالمسؤول الخاص بك إذا كنت تعتقد أن هذا خطأ." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "هذا الرابط مع نوع المِلَفّ قد تمت إضافته مسبقاً لهذا الكتاب. إذا لم يكن مرئيًا، فإن النطاق لا يزال معلقاً." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "عنوان الكتاب" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "ترتيب حسب" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "ترتيب تصاعدي" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "ترتيب تنازلي" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "أساسي" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "تم بنجاح" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "الرابط" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "تحذير" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "خطر" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "تقرير تم إنشاؤه تلقائياً" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "حذف ذاتي" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "تعطيل ذاتي" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "إيقاف المشرف" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "حذف المراقب" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "حجب النطاق" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "كتاب مسموع" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "كتاب الكتروني" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "الرواية الرسومية" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "غلاف صُلْب" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "غلاف ورقي" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s لا يبدو مثل ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s ليس لديه صيغة ISBN الصحيح، توقعنا %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "تعليق" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "مراجعة" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "اقتباس" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "تابع" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "حجب" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "خطأ غير معروف في استيراد الكتاب" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "غير مصرح" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "خطأ غير معروف في استيراد الكتاب" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "خطأ في التصحيح" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "عَلاقة غير صالح" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "محجوب" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "اسم المستخدم" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "يوجد مستخدم بهذا الاسم." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "عام" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "غير مدرج" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "المتابِعون" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "خاص" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "نشيطٌ" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "مكتمل" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "أوقف" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "تم إيقاف الاستيراد" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "خطأ في تحميل الكتب" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "فشل" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "مجاني" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "يمكن شراؤها" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "متاح للإعارة" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "معتمد" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "إعادة فتح التقرير" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "المستخدم المعلق" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "التعليقات" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "كل شيء آخر" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "الخط الزمني الرئيسي" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "الصفحة الرئيسية" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "الخط الزمني اللكتب" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "الكتب" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "الإنجليزية" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (الألمانية)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (الإسبانية)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (الفرنسية)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "بولندي (البولندية)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "السويدية (السويدي)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "تم رفض الإذن" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "غير موجود" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "الصفحة المطلوبة غير موجودة!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "عفواً!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "خطأ في الخادم" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "حدث خطأ ما! عفواً." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "عن" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "مرحبا بك في %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "مُشرف" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "المدير" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "إرسال رسالة مباشرة" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "قواعد السلوك" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "المستخدمون الناشطون:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "إصدار البرنامج:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "عن %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "سياسة الخصوصية" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "شارك هذه الصفحة" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "انسخ العنوان" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "تم نسخة!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "جعل الصفحة خاصة" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "الصفحة خاصة، أنت فقط يمكنك رؤيتها." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "اجعل الصفحة عامة" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "عندما تجعل صفحتك خاصة، لن يتيح المفتاح القديم الوصول إلى الصفحة بعد الآن. سيتم إنشاء مفتاح جديد إذا تم نشر الصفحة مرة أخرى." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "محزن %(display_name)s لم ينته من قراءة أي كتب من %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "هذا يجعل متوسط الصفحات %(pages)s لكل كتاب." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "أقصر قراءتهم هذا العام…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "عدل المؤلف" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "تفاصيل المؤلف" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "اسماء مستعارة:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "ولد:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "مات:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "الروابط الخارجية" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "ويكيبيديا" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "تحميل البيانات" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "عرض على OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "تعديل المؤلف:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "البيانات الوصفية" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "الإسم:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "السيرة الذاتية:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "رابط ويكيبيديا:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "تاريخ الميلاد:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "تاريخ الوفاة:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "مفتاح Goodreads" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "حفظ" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "إلغاء" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "تأكيد" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "تعديل الكتاب" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "انقر لإضافة غلاف" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "إخفاق في تحميل الغلاف" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "اضغط للتوسيع" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "إضافة وصف" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "الوصف:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "ليس لديك أي نشاط للقراءة لهذا الكتاب." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "تعليقاتك" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "الإقتباسات الخاصة بك" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "المواضيع" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "الأماكن" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "القوائم" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "إضافة إلى قائمة" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "إضافة" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "الرقم الدولي للكتاب (ISBN):" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "إضافة غلاف" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "تحميل الغلاف:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "معاينة غلاف الكتاب" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "أغلق" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "تعديل \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "إضافة كتاب" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "تأكيد معلومات الكتاب" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "هذا مؤلف جديد" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "العودة" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "العنوان:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "ترتيب العنوان:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "اللغات:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "تاريخ النشر الأول:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "المؤلفون" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "صفحة المؤلف ل %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "إضافة مؤلف" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "الغلاف" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "الخصائص المادية" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "الصفحات:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "تعذر العثور على الطبعة التي تبحث عنها؟" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "إضافة طبعة أخرى" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "أي" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "اللغة:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "البحث عن إصدارات" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "نوع الملف:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "التوفر:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "تعديل الروابط" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "نوع الملف" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "النطاق" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "الحصول على نسخة" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "مواصلة" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s صفحات" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s لغات" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "نشر في %(date)s بواسطة %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "كتاب غير مرتب" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "تعديل التقييم" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "تأكيد البريد الإلكتروني" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "عذراً! لم نتمكن من العثور على هذه ألتعليمه البرمجية." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "رمز التأكيد:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "قدم" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "إعادة إرسال الرابط الخاص بالتأكيد" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "عنوان البريد الالكتروني:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "إعادة إرسال الرابط" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "المجتمع" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "المستخدمون المحليون" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "المجتمع الفيدرالي" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "الدليل" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "اجعل ملفك الشخصي قابل للاكتشاف لمستخدمي BookWyrm الآخرين." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "الانضمام إلى الدليل" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "ترتيب حسب" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "نشيطٌ حديثًا" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "المقترحة" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "حساب مقفل" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "منشورات" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "نوع الحساب" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "مستخدمو BookWyr" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "كافة المستخدمين المعروفين" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "استكشاف" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "تأكيد البريد الإلكتروني" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "الرجاء تأكيد بريدك الالكتروني" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "أهلا بك،" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "انضم الآن" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "عرض التقرير" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "إعادة تعيين كلمة المرور" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "الرسائل المباشرة مع %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "الرسائل المباشرة" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "كافة الرسائل" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "ليس لديك أية رسائل الآن." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "التحديثات" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "كتبك" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "إضافة إلى كتبك" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "ما الذي تقرأه؟" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "البحث عن كتاب" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "البحث" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "الكتب المقترحة" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "لا توجد كتب" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "احفظ واستمر" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "أهلاً" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "إضافة كتب" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "إنهاء" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "الاسم المعروض:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "الملخص:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "نبذة عنك" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "الصورة الرمزية:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "حذف" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "تعديل الفريق" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "إسم الفريق:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "وصف الفريق:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "حذف الفريق" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "يتابعك" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "المدير" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "التالية" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "الإشعارات" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "كتبك" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "العنوان" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "الرقم الدولي للكتاب (ISBN)" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "أحدث الكتب" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "حسابك" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "الولوج" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "تسجيل الدخول" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "اسم المستخدم:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "الكلمة السرية:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "نسيت كلمة المرور الخاصة بك؟" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "مزيد من المعلومات عن هذا الموقع" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "أَكِد كلمة المرور:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "اعادة تعيين كلمة المرور" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "كلمة المرور" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "إنضم" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "فريق" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "إضافة كتب" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "اقتراح كتب" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "قوائمك" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "كافة القوائم" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "القوائم المحفوظة" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "الخروج" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "حذف الاشعارات" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "الكل" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "الإشارات" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "تابع!" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "تابع على الفديفرس" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "تابع %(username)s" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "الكلمة السرية الجديدة:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "حذف الحساب" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "تعديل الملف الشخصي" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "الملف الشخصي" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "الخصوصية" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "الحساب" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "العلاقات" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "المستخدمون" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "إعلان" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "ظاهر:" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "تعديل الإعلان" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "اللون:" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "الصور" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "البريد الإلكتروني" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "لوحة التحكم" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "إجمالي المستخدمين" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "أيام" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "أسابيع" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "التسجيلات" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "إضافة نطاق" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "النطاق:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "التفاصيل" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "النشاط" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "المستخدمون:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "عرض الكل" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "التقارير:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "الملاحظات" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "اسم مثيل الخادم" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "البرنامج" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "الدعوات" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "العودة إلى الطلبات المعلقة" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "التسجيل" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "تم حفظ الإعدادات" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "العودة الى التقارير" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "محتوى تذييل الصفحة" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "اسم مثيل الخادم:" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "سياسة الخصوصية:" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "الشعار:" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "إسم المستخدم" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "تفاصيل مثيل الخادم" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "الإعدادات" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "كافة الكتب" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "استيراد كتب" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "صفحات" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "تابع @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "إلغاء طلب المتابعة" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "إلغاء متابعة @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "إلغاء المتابعة" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "كتب" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "إنشاء حساب" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "اظهر المزيد" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "كُتب %(username)s" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "الفِرق الخاصة بك" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "الفِرَق: %(username)s" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "القوائم: %(username)s" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "انضم في %(date)s" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "نشاط المستخدم" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + diff --git a/locale/ba_RU/LC_MESSAGES/django.mo b/locale/ba_RU/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..c021e19491 Binary files /dev/null and b/locale/ba_RU/LC_MESSAGES/django.mo differ diff --git a/locale/ba_RU/LC_MESSAGES/django.po b/locale/ba_RU/LC_MESSAGES/django.po new file mode 100644 index 0000000000..31c000b504 --- /dev/null +++ b/locale/ba_RU/LC_MESSAGES/django.po @@ -0,0 +1,7718 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Bashkir\n" +"Language: ba\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ba\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Бер Көн" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Бер Аҙна" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Бер Ай" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Бөтмәй" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Ваҡытһыҙ" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Яңылыш пароль" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Парольдар килешмәйҙәр" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Яңылыш Пароль" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" + diff --git a/locale/bg_BG/LC_MESSAGES/django.mo b/locale/bg_BG/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..a8d7558856 Binary files /dev/null and b/locale/bg_BG/LC_MESSAGES/django.mo differ diff --git a/locale/bg_BG/LC_MESSAGES/django.po b/locale/bg_BG/LC_MESSAGES/django.po new file mode 100644 index 0000000000..372950c584 --- /dev/null +++ b/locale/bg_BG/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Bulgarian\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: bg\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Един ден" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Една седмица" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Един месец" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Няма краен срок" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Неограничено" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Грешна парола" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Паролата не съответства" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Грешна парола" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Прочетена на не може да е по-рано от започната на." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Отказах се да чета не може да е по-рано от започната на." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Отказах се да чета не може да е в бъдещето." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Завършена на не може да е в бъдещето." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Грешни потребителско име или парола" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Потребител с това потребителско име вече съществува" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Потребител с този e-mail вече съществува." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Неправилен код" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Този домейн е блокиран. Моля, свържете се с Вашия администратор, ако смятате, че е допусната грешка." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Този линк с тип на файл вече е добавен за тази книга. Ако все още не се вижда, домейнът предстои да бъде одобрен." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Поредност в списъка" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Заглавие на книгата" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Оценка" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Подреждане по" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Възходящ ред" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Низходящ ред" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Основен" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Успешно" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Връзка" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Внимание" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Опасност" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Автоматично генериран доклад" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Чакащи" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Самоизтриване" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "Самодеактивиране" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Временно отстраняване от модератор" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Изтриване от модератор" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Блокиране на домейн" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Аудиокнига" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "Е-книга" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Графичен роман" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Твърди корици" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Меки корици" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Федериран" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Блокиран" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s is not a valid remote_id" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s не е валидно потребителско име" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "потребителско име" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Вече съществува потребител с това потребителско име." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Публичен" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Невключен в указателя" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/bn_BD/LC_MESSAGES/django.mo b/locale/bn_BD/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..49323d3df8 Binary files /dev/null and b/locale/bn_BD/LC_MESSAGES/django.mo differ diff --git a/locale/bn_BD/LC_MESSAGES/django.po b/locale/bn_BD/LC_MESSAGES/django.po new file mode 100644 index 0000000000..5a08303d68 --- /dev/null +++ b/locale/bn_BD/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Bengali\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: bn\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "এক দিন" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "এক সপ্তাহ" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "এক মাস" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "অসীম" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "ভুল পাসওয়ার্ড" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "পাসওয়ার্ডটি মিলে নি" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "ভুল পাসওয়ার্ড" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "পড়া শেষ করার তারিখ শুরুর তারিখের আগে হতে পারবে না।" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "শেষ পড়ার তারিখ শুরুর তারিখের আগে হতে পারবে না।" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "পড়া শেষ করার দিন ভবিষ্যতে হওয়া সম্ভব নয়।" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "পড়া শেষ করার দিন ভবিষ্যতে হওয়া সম্ভব নয়।" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "ইউজারনেম অথবা পাসওয়ার্ড ভুল।" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "এই ইউজারনেমটি আগে থেকেই ব্যবহার করা হচ্ছে" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "এই ইমেইল ঠিকানাধারী একজন ব্যবহারকারী ইতোমধ্যে রয়েছেন।" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "ভুল কোড" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "এই ডোমেইনটি ব্লক করা। দয়া করে অ্যাডমিনের সাথে যোগাযোগ করুন যদি এটিকে ভুল মনে করে থাকেন।" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/bn_IN/LC_MESSAGES/django.mo b/locale/bn_IN/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..8da9d1a8ca Binary files /dev/null and b/locale/bn_IN/LC_MESSAGES/django.mo differ diff --git a/locale/bn_IN/LC_MESSAGES/django.po b/locale/bn_IN/LC_MESSAGES/django.po new file mode 100644 index 0000000000..0685681fae --- /dev/null +++ b/locale/bn_IN/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Bengali, India\n" +"Language: bn_IN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: bn-IN\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "এক দিন" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "এক সপ্তাহ" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "এক মাস" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "অসীম" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "ভুল পাসওয়ার্ড" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "পাসওয়ার্ডটি মিলে নি" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "ভুল পাসওয়ার্ড" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "পড়া শেষ করার তারিখ শুরুর তারিখের আগে হতে পারবে না।" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "শেষ পড়ার তারিখ শুরুর তারিখের আগে হতে পারবে না।" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "পড়া শেষ করার দিন ভবিষ্যতে হওয়া সম্ভব নয়।" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "পড়া শেষ করার দিন ভবিষ্যতে হওয়া সম্ভব নয়।" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "ইউজারনেম অথবা পাসওয়ার্ড ভুল।" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "এই ইউজারনেমটি আগে থেকেই ব্যবহার করা হচ্ছে" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "এই ইমেইল ঠিকানাধারী একজন ব্যবহারকারী ইতোমধ্যে রয়েছেন।" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "ভুল কোড" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "এই ডোমেইনটি ব্লক করা। দয়া করে অ্যাডমিনের সাথে যোগাযোগ করুন যদি এটিকে ভুল মনে করে থাকেন।" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/ca_ES/LC_MESSAGES/django.mo b/locale/ca_ES/LC_MESSAGES/django.mo index 4efccdb669..97a589fa94 100644 Binary files a/locale/ca_ES/LC_MESSAGES/django.mo and b/locale/ca_ES/LC_MESSAGES/django.mo differ diff --git a/locale/ca_ES/LC_MESSAGES/django.po b/locale/ca_ES/LC_MESSAGES/django.po index b40a248bf2..8caab30132 100644 --- a/locale/ca_ES/LC_MESSAGES/django.po +++ b/locale/ca_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-14 20:35\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-10-08 02:52\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Catalan\n" "Language: ca\n" @@ -33,56 +33,55 @@ msgstr "Un mes" msgid "Does Not Expire" msgstr "No caduca" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} usos" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Il·limitat" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "La contrasenya no és correcta" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "La contrasenya no coincideix" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "La contrasenya no és correcta" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "La data de finalització de lectura no pot ser anterior a la d'inici." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "La data d'aturada de lectura no pot ser anterior a la d'inici." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "La data d'aturada de la lectura no pot ser en el futur." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "La data de finalització de la lectura no pot ser en el futur." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "El nom d'usuari o la contrasenya són incorrectes" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Ja existeix un usuari amb aquest nom" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Ja existeix un usuari amb aquesta adreça electrònica." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Aquesta adreça de correu electrònic no pot ser registrada." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "El codi no és correcte" @@ -90,7 +89,7 @@ msgstr "El codi no és correcte" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Aquest domini ha estat bloquejat. Poseu-vos en contacte amb l'administració d'aquesta instància si creieu que és un error." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Ja s'ha afegit un enllaç a aquest tipus de fitxer per a aquest llibre. Si encara no és visible és que el domini encara està pendent." @@ -102,8 +101,8 @@ msgstr "Ordre del llistat" msgid "Book Title" msgstr "Títol del llibre" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Valoració" @@ -145,8 +144,8 @@ msgstr "Alerta" msgid "Automatically generated report" msgstr "Informe generat automàticament" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Eliminació pel moderador" msgid "Domain block" msgstr "Bloqueig de domini" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audiollibre" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "Llibre electrònic" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Novel·la gràfica" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Tapa dura" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Edició de butxaca" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s no semblen ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s no té l'ISBN checksum correcte, hauria de ser %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentari" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Ressenya" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Cita" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Segueix" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloqueja" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "Error desconegut en importar el llibre" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "no autoritzat" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "Error desconegut en importar l'estatus del llibre" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "error de connexió" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "relació invàlida" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "Error desconegut en importar la relació" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federat" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s no és una remote_id vàlida" msgid "%(value)s is not a valid username" msgstr "%(value)s no és un nom d'usuari vàlid" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nom d'usuari" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Ja existeix un usuari amb aquest nom." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Ja existeix un usuari amb aquest nom." msgid "Public" msgstr "Públic" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Públic" msgid "Unlisted" msgstr "No llistat" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "No llistat" msgid "Followers" msgstr "Seguidors" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Seguidors" msgid "Private" msgstr "Privat" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Actiu" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Complet" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Aturat" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "S'ha aturat la importació" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Error en carregar el llibre" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "No s'ha trobat el llibre" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Ha fallat" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Lliure" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "A la venda" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponible per a préstec" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprovat" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Comentari" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Informe resolt" @@ -363,123 +429,159 @@ msgstr "Domini aprovat" msgid "Deleted item" msgstr "Element suprimit" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "Desconegut" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "l'estat de %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "el comentari de %(display_name)s quant a %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "la cita de %(display_name)s quant a %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "la revisió de %(display_name)s de %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "%(display_name)s ha valorat %(book_title)s: %(display_rating). 1f estrelles" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Ressenya" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Comentaris" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citacions" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Tota la resta" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Línia de temps Inici" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Inici" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Cronologia dels llibres" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Llibres" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Anglès)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Alemany)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (espanyol)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskera (Basc)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (gallec)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (italià)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Coreà)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (finès)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (francès)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituà)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Països Baixos (Holandès)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (noruec)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (polonès)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (portuguès del Brasil)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portuguès europeu)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (romanès)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (suec)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (Ucraïnès)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (xinès simplificat)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (xinès tradicional)" @@ -517,12 +619,8 @@ msgid "The file you are uploading is too large." msgstr "El fitxer que estàs carregant és massa gran." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -"Podeu provar d'utilitzar un fitxer més petit o demanar al vostre administrador del servidor BookWyrm que augmenti la configuració de DATA_UPLOAD_MAX_MEMORY_SIZE.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Podeu provar d'utilitzar un fitxer més petit o demanar al vostre administrador del servidor BookWyrm que augmenti la configuració de DATA_UPLOAD_MAX_MEMORY_SIZE. " #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -618,7 +716,7 @@ msgid "Statuses posted:" msgstr "Estats publicats:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versió de programari:" @@ -728,7 +826,7 @@ msgstr "La seva lectura més breu d'aquest any…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -808,44 +906,48 @@ msgid "Wikipedia" msgstr "Vikipèdia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Mira-ho a la Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Pàgina web" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Veure el registre ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Veure a ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Carregueu dades" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Veure a OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Veure a Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Veure a LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Veure a Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Llibres de %(name)s" @@ -882,8 +984,8 @@ msgid "Name:" msgstr "Nom:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separeu diversos valors amb comes." @@ -895,50 +997,54 @@ msgstr "Biografia:" msgid "Wikipedia link:" msgstr "Enllaç de Viquipèdia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Pàgina web:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data de naixement:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data de defunció:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identificadors de l'autoria" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Clau d'OpenLibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID a l'Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Clau de Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Identificador a Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -946,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -960,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Desa" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -977,6 +1083,7 @@ msgstr "Desa" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -994,100 +1101,104 @@ msgstr "La càrrega de les dades es connectarà a %(source_name)sdifferent edition of this book is on your %(shelf_name)s shelf." msgstr "Una edició diferent d'aquest llibre és al teu %(shelf_name)s prestatge." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Les vostres lectures" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Afegiu dates de lectura" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "No tens cap activitat de lectura per aquest llibre." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Les vostres ressenyes" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "El vostres comentaris" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Les teves cites" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Temes" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Llocs" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1095,18 +1206,18 @@ msgstr "Llocs" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Llistes" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Afegiu a la llista" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1129,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN copiat!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Nombre OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "ASIN d'audiollibre:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "Identificador ISFDB:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna ID:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Afegiu una coberta" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Carregueu una coberta:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Carregueu una coberta des d'un enllaç:" @@ -1236,7 +1357,7 @@ msgid "This is a new work" msgstr "Es tracta d'una publicació nova" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1289,125 +1410,129 @@ msgstr "Enrere" msgid "Title:" msgstr "Títol:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Ordena per títol:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtítol:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Sèrie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Nombre de la sèrie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Idiomes:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Temes:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Afegiu un tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Elimineu un tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Afegiu un altre tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publicació" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editorial:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Data de publicació per primera vegada:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data de publicació:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autoria" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Elimineu %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Pàgina de l'autor de %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Afegiu autoria:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Afegiu autoria" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Jane Doe" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Afegiu un altre autor" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Coberta" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Propietats físiques" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detalls del format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Pàgines:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identificadors del llibre" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "ID OpenLibrary:" @@ -1435,7 +1560,7 @@ msgid "Any" msgstr "Qualsevol" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Idioma:" @@ -1449,7 +1574,7 @@ msgstr "Afegiu un enllaç al fitxer" #: bookwyrm/templates/book/file_links/add_link_modal.html:19 msgid "Links from unknown domains will need to be approved by a moderator before they are added." -msgstr "Els enllaços provinents de dominis desconeguts no s'afegiran fins que siguin aprovats per la moderació." +msgstr "Els enllaços provinents de dominis desconeguts no s'afegiran fins que els aprovi la moderació." #: bookwyrm/templates/book/file_links/add_link_modal.html:24 msgid "URL:" @@ -1496,12 +1621,15 @@ msgid "Domain" msgstr "Domini" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1513,8 +1641,8 @@ msgstr "Estat" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1560,8 +1688,8 @@ msgstr "Sortint de BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Aquest enllaç et portarà a: %(link_url)s.
    És aquí on voleu anar?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continueu" @@ -1617,7 +1745,19 @@ msgstr "Llibre sense classificar" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "La càrrega de les dades es connectarà a %(source_name)s i comprovarà si hi ha metadades sobre aquest llibre que no estan aquí. Les metadades existents no seran sobreescrites." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Edita la ressenya" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Edita la cita" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Edita el comentari" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Edita l'estat" @@ -1644,7 +1784,7 @@ msgstr "Codi de confirmació:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Envieu" @@ -1726,12 +1866,12 @@ msgstr "Suggerit" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1852,8 +1992,8 @@ msgstr "Hola," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm allotjat a %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm allotjat a %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1871,8 +2011,8 @@ msgstr "Uniu-vos-hi ara" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Més informació sobre %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Saber-ne més sobre %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2048,19 +2188,19 @@ msgid "Add to your books" msgstr "Afegir als vostres llibres" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Pendent de llegir" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Lectures actuals" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2069,7 +2209,7 @@ msgid "Read" msgstr "Llegits" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Deixat de llegir" @@ -2102,7 +2242,7 @@ msgstr "Podràs afegir llibres quan comencis a usar %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Cerca" @@ -2754,6 +2894,7 @@ msgstr "Podeu crear o unir-vos a un grup amb altres usuàries. Els grups poden c #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grups" @@ -2868,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Et queden %(display_left)s llibres per importar." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Les importacions recents han durat %(hours)s de mitjana." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Les importacions recents han durat %(minutes)s de mitjana." @@ -2898,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Podeu descarregar-vos les vostres dades de Goodreads des de la pàgina d'Importa/Exporta del vostre compte de Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Arxiu de dades:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Inclou ressenyes" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Configuració de privacitat per les ressenyes importades:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Crear nous prestatges si no existeixen" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Configuració de privadesa per a ressenyes i prestatges importats:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importa" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Has arribat al límit d'importacions." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Les importacions es troben temporalment deshabilitades; gràcies per la vostra paciència." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importacions recents" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Data de creació" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Darrera actualització" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Items" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "No hi ha cap importació recent" @@ -2968,7 +3123,7 @@ msgstr "No hi ha cap importació recent" #: bookwyrm/templates/import/import_status.html:15 #: bookwyrm/templates/import/import_status.html:29 msgid "Import Status" -msgstr "Importa l'estat" +msgstr "Estat de la importació" #: bookwyrm/templates/import/import_status.html:13 #: bookwyrm/templates/import/import_status.html:27 @@ -2984,20 +3139,24 @@ msgid "Imports" msgstr "Importacions" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "S'ha iniciat la importació:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "En curs" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Refresca" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Atura la importació" @@ -3014,6 +3173,7 @@ msgid "Review items" msgstr "Revisa els ítems" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3021,6 +3181,7 @@ msgstr[0] "Ha fallat la importació de %(display_counter)s element." msgstr[1] "Ha fallat la importació de %(display_counter)s elements." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Visualitza i soluciona els elements fallits" @@ -3029,12 +3190,14 @@ msgid "Row" msgstr "Fila" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Títol" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3043,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Clau d'OpenLibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor/a" @@ -3052,13 +3215,9 @@ msgstr "Autor/a" msgid "Shelf" msgstr "Prestatge" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Ressenya" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Llibre" @@ -3076,6 +3235,8 @@ msgid "View imported review" msgstr "Veure ressenya importada" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importat" @@ -3111,114 +3272,119 @@ msgstr "Si voleu migrar qualsevol estat (comentaris, ressenyes o cites), heu de #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Actualment podeu importar un usuari cada %(user_import_hours)s hores." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "Actualment pots importar un usuari cada %(hours)s hores." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "A continuació, podreu importar un fitxer d'usuari a %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Podràs importar un altre usuari a les %(next_time)s" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Pas 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Seleccioneu un fitxer d'exportació generat des d'un altre compte de BookWyrm. El format del fitxer hauria de ser .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Pas 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Desmarqueu les caselles de selecció de les dades que no vulgueu incloure a la vostra importació." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Perfil d'usuari" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Sobreescriu el nom de visualització, el resum i l'avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Configuració de l'usuari" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Sobreescriu:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "Si cal l'aprovació manual perquè altres usuaris segueixin el vostre compte" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "Si es mostren els seguidors/seguidors al teu perfil" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "Si el vostre objectiu de lectura es mostra al vostre perfil" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "Tant si veieu que l'usuari segueix els suggeriments" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Si el teu compte és suggerit a altres persones" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "La teva zona horària" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "La vostra configuració de privadesa de publicació predeterminada" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Seguidors i seguidors" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Usuaris bloquejats" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Objectius de lectura" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Sobreescriu els objectius de lectura per a tots els anys que figuren al fitxer d'importació" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Prestatges" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Historial de lectura" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Ressenyes de llibres" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Comentaris sobre llibres" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Llistes de llibres" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Llistes desades" @@ -3242,15 +3408,18 @@ msgid "Reject" msgstr "Rebutja" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Elements fallits" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Resolució de problemes" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Reintentar la importació pot arreglar els elements que falten en casos com:" @@ -3259,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "El llibre s'ha afegit a la instància a partir de la importació" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Un error transitori o un temps d'espera excedit ha causat que la font de dades externa no estigui disponible." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm s'ha actualitzat posteriorment a aquesta importació amb una correcció d'errors" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Contacteu amb l'administrador o obriu una qüestió si veieu elements fallits inesperats." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Estat de la importació de l'usuari" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Estat del reintent d'importació de l'usuari" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Importació d'usuaris" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Total" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Estats" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Seguint & Bloquejats" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Llibres importats" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Solució de problemes en la importació d'usuaris" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "El teu compte no ha sigut creat com un àlies del compte d'usuari original" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "Reintentar una importació no funcionarà en els casos en què:" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "Un usuari, estat o servidor BookWyrm ha sigut esborrat després de la creació del teu arxiu d'importació" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "Importació d'estats després que el teu antic compte d'usuari ha estat esborrat" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "Actualment pots importar un usuari cada %(hours)s hores." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Podràs reintentar la importació en %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Relacions" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Raó" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Crea un compte" @@ -3324,7 +3568,7 @@ msgid "Login" msgstr "Inicia la sessió" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Inicia la sessió" @@ -3340,22 +3584,22 @@ msgstr "L'adreça de correu electrònic ha estat confirmada amb èxit!" msgid "Username:" msgstr "Nom d'usuari:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Contrasenya:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Has oblidat la teva contrasenya?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Més sobre aquest lloc" @@ -3383,7 +3627,7 @@ msgstr "Restablir contrasenya" msgid "Reactivate Account" msgstr "Reactiva el compte" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Reactiva el compte" @@ -3393,7 +3637,7 @@ msgid "%(site_name)s search" msgstr "%(site_name)s cerca" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" +msgid "Search for a book, author, user, or list" msgstr "Cerca un llibre, un usuari o una llista" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 @@ -3607,6 +3851,8 @@ msgid "List position" msgstr "Posició de la llista" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Estableix" @@ -3931,7 +4177,7 @@ msgstr "%(related_user)s i %(other_user_di #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Un nou enllaç de domini requereix revisió" msgstr[1] "%(display_count)s noves denúncies necessiten moderació" @@ -4102,21 +4348,21 @@ msgstr "Ja estàs seguint a %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Ja heu sol·licitat seguir a %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Segueix %(username)s al fedivers" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Segueix %(username)s des d'un altre compte del Fedivers com per exemple BookWyrm, Mastodon, o Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Nom d'usuari des del qual seguir:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Segueix!" @@ -4157,80 +4403,12 @@ msgstr "Primer inicieu sessió..." msgid "Follow %(username)s" msgstr "Segueix %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Ara segueixes a %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Autenticació en dos passos" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "La configuració en dos passos (2FA) s'ha actualitzat correctament" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Anota o copia i enganxa aquests codis en algun lloc segur." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Heu de fer-los servir en ordre, i no es tornaran a mostrar." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "L'autenticació en dos passos està activada en el teu compte." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Desactiva 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Podeu generar codis de seguretat per usar-los en cas que no tingueu accés a la vostra aplicació d'autenticació. Si genereu codis nous, qualsevol codi de seguretat generat anteriorment deixarà de funcionar." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Genera codis de seguretat" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Escaneja el codi QR amb la teva app d'autenticació i entra el codi que apareix aquí sota per confirmar que la teva app està configurada." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Utilitza la clau de configuració" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nom del compte:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Codi:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Introduïu el codi de la vostra app:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Podeu fer el vostre compte més segur utilitzant Autenticació en Dos Passos (2FA). Això requereix que entreu un codi d'un sol ús en una aplicació de mòbil com Authy, Google Authenticator o Microsoft Authenticator cada cop que inicieu sessió." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Confirmeu la vostra contrasenya per començar a configurar 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Configura 2FA" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 @@ -4330,6 +4508,12 @@ msgstr "Elimina el teu compte de manera permanent" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "L'acció d'eliminar el teu compte no es pot desfer. El teu nom d'usuari no estarà disponible per registrar-se en un futur." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Desactiva 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Deshabilitar l'Autenticació en Dos Passos" @@ -4359,12 +4543,12 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Mostra" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacitat" @@ -4373,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Mostra l'indicador de l'objectiu de lectura al canal" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Mostra les valoracions" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Mostra usuaris suggerits" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Mostra aquest compte a usuaris suggerits" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "El teu compte apareixerà al directory, i pot ser recomanat a altres usuaris de BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Zona horària preferida: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Aprova seguidors manualment" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Oculta els seguidors i els que segueixo al perfil" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Privacitat de publicació per defecte:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Cerques prestatges privats? Pots modificar els nivells de visibilitat dels teus prestatges. Ves a Els teus llibres, tria un prestatge de la barra de pestanyes i prem \"edita prestatge.\"" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "Exporta el compte de BookWyrm" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "Podeu crear un fitxer d'exportació aquí. Això us permetrà migrar les vostres dades a un altre compte de BookWyrm." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    El vostre fitxer inclourà:

    • Perfil d'usuari
    • La majoria de la configuració de l'usuari
    • Objectius de lectura
    • Prestatges
    • Historial de lectura
    • Ressenyes de llibres
    • Estats
    • Les vostres pròpies llistes i llistes desades
    • Quins usuaris seguiu i bloquegeu

    El vostre fitxer no inclourà:

    • Missatges directes
    • Respostes als vostres estats
    • Grups
    • Preferits< /li>
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "El teu arxiu inclourà:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "La majoria de les configuracions de l'usuari" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Les llistes pròpies i guardades" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Els usuaris a qui segueixes i els blocats" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "El teu arxiu no inclourà:" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Missatges directes" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Les respostes als teus estats" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Preferits" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "Al teu nou compte BookWyrm pots triar què importar: no hauràs d'importar tot el que s'exporti." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "Si voleu migrar qualsevol estat (comentaris, ressenyes o cites), heu de definir el compte al qual us moveu com a àlies d'aquest, o bé moure aquest compte. al compte nou, abans d'importar les dades d'usuari." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "L'exportació d'usuaris nous està deshabilitada." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "La configuració de les exportacions de l'usuari es pot canviar des de la pàgina d'importacions al tauler d'administració." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "Podreu crear un fitxer d'exportació nou a %(next_available)s" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "Les importacions recents han durat %(hours)s de mitjana." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "Les importacions recents han durat %(minutes)s de mitjana." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Creeu un fitxer d'exportació d'usuari" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Exportacions recents" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "Els fitxers d'exportació de l'usuari es mostraran \"complets\" un cop estiguin preparats. Això pot trigar una mica. Feu clic a l'enllaç per descarregar el vostre fitxer." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "Els fitxers d'exportació s'eliminaran després de %(expiry_hours)s hores." + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Data" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Mida" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Descarrega la teva exportació" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "L'arxiu ja no és disponible" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4479,6 +4727,10 @@ msgstr "Baixa el fitxer" msgid "Account" msgstr "Compte" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "Configuració de Seguretat" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Moure al compte" @@ -4516,6 +4768,124 @@ msgstr "Recordeu afegir aquest usuari com a àlies del compte destí abans de fe msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Entreu el nom d'usuari del compte que voleu afegir com a àlies. Per exemple, usuari@exemple.com:" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "Seguretat de compte" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Autenticació en dos passos" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "La configuració en dos passos (2FA) s'ha actualitzat correctament" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Anota o copia i enganxa aquests codis en algun lloc segur." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Heu de fer-los servir en ordre, i no es tornaran a mostrar." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "L'autenticació en dos passos està activada en el teu compte." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Podeu generar codis de seguretat per usar-los en cas que no tingueu accés a la vostra aplicació d'autenticació. Si genereu codis nous, qualsevol codi de seguretat generat anteriorment deixarà de funcionar." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Genera codis de seguretat" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Escaneja el codi QR amb la teva app d'autenticació i entra el codi que apareix aquí sota per confirmar que la teva app està configurada." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Utilitza la clau de configuració" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nom del compte:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Codi:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Introduïu el codi de la vostra app:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Podeu fer el vostre compte més segur utilitzant Autenticació en Dos Passos (2FA). Això requereix que entreu un codi d'un sol ús en una aplicació de mòbil com Authy, Google Authenticator o Microsoft Authenticator cada cop que inicieu sessió." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Confirmeu la vostra contrasenya per començar a configurar 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Configura 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "Sessions" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "És possible que no es mostrin algunes sessions heretades." + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "Heu iniciat la sessió a les sessions següents:" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "Data d'inici de sessió" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "Adreça IP" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "IP" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "Sistema operatiu" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "SO" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "Navegador web" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "Navegador" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "Tú" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "Tanca la sessió" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "Actualment no es poden mostrar les vostres sessions iniciades." + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4561,6 +4931,7 @@ msgstr "Començat a llegir" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progrés" @@ -4691,8 +5062,8 @@ msgstr "Cerca consulta" msgid "Search type" msgstr "Tipus de Cerca" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4702,12 +5073,12 @@ msgstr "Tipus de Cerca" msgid "Users" msgstr "Usuaris" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "No s'han trobat resultats per \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4729,7 +5100,7 @@ msgstr "Edita" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Avisos" @@ -4747,13 +5118,13 @@ msgstr "Fals" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data d'inici:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data final:" @@ -4822,7 +5193,6 @@ msgstr "Color:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Normes d'auto-moderació" @@ -4835,35 +5205,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Les usuàries o estats que ja han estat denunciades (encara que la denúncia no s'hagi resolt) no seran marcades." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Programació:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Última execució:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Número total d'execucions:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Activat:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Suprimeix la programació" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Executa ara" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "La data de l'última execució no s'actualitzarà" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Programa un escaneig" @@ -4908,6 +5286,7 @@ msgstr "Elimina la norma" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Estat del Celery" @@ -4936,6 +5315,7 @@ msgid "Import triggered" msgstr "Inicia la importació" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Connectors" @@ -4979,8 +5359,9 @@ msgid "Active Tasks" msgstr "Tasques actives" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4993,6 +5374,8 @@ msgid "Run time" msgstr "Temps d'execució" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioritat" @@ -5025,6 +5408,66 @@ msgstr "Netejar les cues pot causar greus problemes incloent pèrdua de dades! J msgid "Errors" msgstr "Errors" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "Finna.fi és un servei de cerca que recull material de centenars d'organitzacions finlandeses sota un mateix sostre." + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "Crea un nou connector" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Raó de desactivació:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Desactiva" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "Activitat" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "Preferències del connector" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "Els connectors són fonts de dades sobre llibres i autors." + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "La prioritat determina l'ordre en què apareixen els resultats de la cerca. La prioritat més alta és 1. La prioritat per defecte és 2." + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "La configuració del connector només determina si s'utilitzarà un connector per a oferir resultats de cerca. Per gestionar més interaccions amb altres servidors federats, inclosos els blocs de domini, vegeu" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Instàncies federades" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "s'ha d'actualitzar. Comprova les notes de llançament recents per a més informació." + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Actualitza" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5032,7 +5475,7 @@ msgid "Dashboard" msgstr "Panell de control" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Total d'usuàries" @@ -5041,40 +5484,36 @@ msgstr "Total d'usuàries" msgid "Active this month" msgstr "Actives aquest mes" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Estats" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Treballs" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Activitat de la instància" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Interval:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dies" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Setmanes" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Activitat de registre d'usuàries" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Activitat de l'estat" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Treballs creats" @@ -5086,9 +5525,13 @@ msgstr "Registres" msgid "Statuses posted" msgstr "Estats publicats" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Voleu comprovar automàticament si hi ha noves versions de BookWyrm? (recomanat)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Posa data a les comprovacions" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5170,7 +5613,7 @@ msgstr "Cap domini de correu a la llista negra" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Configuració del correu electrònic" @@ -5183,7 +5626,7 @@ msgid "Successfully sent test email." msgstr "Correu de prova enviat correctament." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Remitent de correu electrònic:" @@ -5231,15 +5674,6 @@ msgstr "Envia un correu de prova" msgid "Add instance" msgstr "Afegeix una instància" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Instàncies federades" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5315,12 +5749,6 @@ msgstr "Notes" msgid "No notes" msgstr "Sense notes" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloqueja" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Tots els usuaris d'aquesta instància seran desactivats." @@ -5373,6 +5801,49 @@ msgstr "Programari" msgid "No instances found" msgstr "No s'ha trobat cap instància" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "Manteniment de fitxers" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "Posa data a l'eliminació d'arxius" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "Aquesta tasca elimina els fitxers d'exportació i importació d'usuaris que han arribat a la data de caducitat." + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "Caducitat de l'arxiu d'exportació" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "Antiguitat màxima dels arxius d'exportació, en hores" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "S'eliminaran els fitxers més antics." + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "Estableix les hores per caducar" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "Arxius caducats" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Completat" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "El temps de venciment s'ha actualitzat correctament" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5419,7 +5890,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Alguns usuaris poden intentar importar una gran quantitat de llibres, cosa que podries voler limitar." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Estableix el valor a 0 per tal de no especificar cap limitació." @@ -5439,62 +5910,81 @@ msgstr "dies." msgid "Set limit" msgstr "Estableix el límit" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Deshabilita iniciar noves importacions" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Aquesta acció només està indicada pe a quan les coses han anat molt malament amb les importacions i és necessari aturar la funcionalitat mentre es resol la incidència." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Mentre les importacions es troben deshabilitades, els usuaris no podran iniciar noves importacions, però les que es troben en curs no es veuran afectades." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Inhabilita les exportacions d'usuaris" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "Limiteu la freqüència amb què els usuaris poden importar i exportar" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "Alguns usuaris poden intentar executar importacions o exportacions d'usuaris amb molta freqüència, cosa que voleu limitar." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Restringeix les importacions i exportacions dels usuaris a una vegada cada " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Limita la freqüència en què els usuaris poden importar o exportar les dades" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "hores" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "Canvia el límit" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Els usuaris no poden iniciar noves exportacions actualment. Aquest és el valor per defecte." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Actualment no és possible proporcionar exportacions d'usuari quan s'utilitza l'emmagatzematge Azure." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Activar l'exportació d'usuaris" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Importació de llibres" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Completat" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Usuari" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Data actualització" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Elements pendents" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Ítems amb èxit" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "No s'han trobat importacions coincidents." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Importació d'usuaris" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5658,6 +6148,10 @@ msgstr "Moderació" msgid "Reports" msgstr "Informes" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "Normes d'auto-moderació" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5668,22 +6162,26 @@ msgstr "Dominis dels enllaços" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Estat del Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "Tasques programades" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "Manteniment de fitxers" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Configuració d'instància" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Configuració del lloc" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5691,7 +6189,7 @@ msgstr "Configuració del lloc" msgid "Registration" msgstr "Registre" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5897,6 +6395,61 @@ msgstr "Resolt" msgid "No reports found." msgstr "No s'ha trobat cap informe." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Tasques programades" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Tasques" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nom" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Tasques Celery" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Data del canvi" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Última execució:" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Programat" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "ID de programació" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Activat" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Anul·lar la programació" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Cap tasca programada" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Programat" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "No hi ha res programat" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6142,10 +6695,6 @@ msgstr "Seguidors aprovats manualment:" msgid "Discoverable:" msgstr "Visible:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Raó de desactivació:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detalls de la instància" @@ -6239,8 +6788,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "El vostre domini sembla que no està ben configurat. No hauria d'incloure cap protocol o barres inclinades." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Esteu executant BookWyrm en mode producció sense https. USE_HTTPS hauria d'estar activat a producció." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "Esteu executant BookWyrm en mode debug. Això no s'hauria de fer mai a producció." #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6250,39 +6799,39 @@ msgstr "Configuració" msgid "Instance domain:" msgstr "Domini de la instància:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocol:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "URL principal de la instància:" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Utilitzant S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Idioma per defecte:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Permetre previsualitzar imatges:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Permetre miniatures d'imatges:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Està tot bé?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "És la vostra última oportunitat per establir el vostre domini i protocol." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Podeu canviar la configuració de la vostra instància al fitxer .env del vostre servidor." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Veure instruccions d'instal·lació" @@ -6299,7 +6848,7 @@ msgid "Need help?" msgstr "Necessiteu ajuda?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Crea un prestatge" @@ -6307,59 +6856,72 @@ msgstr "Crea un prestatge" msgid "Edit Shelf" msgstr "Edita el prestatge" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Tots els llibres" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importa Llibres" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s llibre" msgstr[1] "%(formatted_count)s llibres" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(mostrant %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Edita el prestatge" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Elimina el prestatge" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Arxivat" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Començat" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Finalitzat" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" -msgstr "Fins" +msgstr "Finalitzat" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "No s'ha trobat cap llibre que coincideixi amb %(shelves_filter_query)s" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Aquest prestatge és buit." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Filtra per paraula clau" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Escriu el text aquí" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Convida" @@ -6461,10 +7023,6 @@ msgstr "Venen espòilers!" msgid "Comment:" msgstr "Comentari:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Actualitza" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Publica" @@ -6490,7 +7048,7 @@ msgstr "A la pàgina:" msgid "At percent:" msgstr "Al per cent:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "a" @@ -6535,10 +7093,6 @@ msgstr "Aplica filtres" msgid "Follow @%(username)s" msgstr "Segueix @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Segueix" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Desfés la sol·licitud de seguiment" @@ -6571,7 +7125,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "El codi font de BookWyrm està disponible de manera oberta. Pots contribuir-hi o informar de problemes a GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Sense valoració" @@ -6583,7 +7137,7 @@ msgstr[0] "%(half_rating)s estrella" msgstr[1] "%(half_rating)s estrelles" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6812,6 +7366,10 @@ msgstr "Deixa de llegir" msgid "Finish reading" msgstr "Acaba de llegir" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Mostra la valoració" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Mostra l'estat" @@ -7167,8 +7725,9 @@ msgid "View profile and more" msgstr "Mostra el perfil i més" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "El fitxer sobrepassa la mida màxima: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "El fitxer sobrepassa la mida màxima: %(max_size)sMB" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7187,25 +7746,9 @@ msgstr[1] "%(num)d llibres - per %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Actualitzacions d'estat de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Ressenyes de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Cites de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Comentaris de {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "compte d'usuari nou" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/cdo/LC_MESSAGES/django.mo b/locale/cdo/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..1ba0320315 Binary files /dev/null and b/locale/cdo/LC_MESSAGES/django.mo differ diff --git a/locale/cdo/LC_MESSAGES/django.po b/locale/cdo/LC_MESSAGES/django.po new file mode 100644 index 0000000000..0c9c1f7b94 --- /dev/null +++ b/locale/cdo/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Eastern Min\n" +"Language: cdo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: cdo\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "蜀日" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "蜀禮拜" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "蜀個月日" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "儥過期" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "無限制" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "已經有儂使這芘電批地址開了帳號." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "開單順序" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "書名" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "分數" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "排列方式" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "由前向後" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "由後向前" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "等𡅏處理" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "自家除去" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "審覈員暫停" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "審覈員除去" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "有聲書" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "電子書" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "視覺文學" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "精裝" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "平裝" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "留言" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "書評" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "關注" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "跨站" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s 伓是有效其 remote_id" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "名字" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "已經有儂起了這芘名字." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "公開" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "伓公開" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "秘密" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "𡅏使" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "書無辦法掏過來" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "討儥着卜挃其書" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "書評" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "頭頁時間線" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "頭頁" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "書其時間線" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "書" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "English (英語)" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (德語)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (西語)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (加利西亞話)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (法語)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (立陶宛話)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (官話)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (官話)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "討儥着" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "汝卜挃其頁盡像無着這芘網站裏勢!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "吓也!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "伺服器出問題了" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "有乇出問題了! 儥好意思." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "歡迎來遘 %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "管理員" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "行爲規範" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "關於 %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "作者" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "修改作者" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "別名:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "出世:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "過後:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "維基百科" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "去OpenLibrary看" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "去Inventaire看" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "去LibraryThing看" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "去Goodreads看" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "%(name)s 寫其書" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "修改作者:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "加添了:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "更新了:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "尾尾修改其儂:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "元資料" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "名字:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "請使半形逗號 (,) 隔開這幾芘值." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "簡單介紹:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "維基百科連結:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "出世其日子:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "過後其日子:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "作者其編號" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Openlibrary 密匙:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "Inventaire ID:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Librarything 密匙:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Goodreads 密匙:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "存下" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "取消" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "確認" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "修改者書" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "書皮做儥出" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s 條書評)" +msgstr[1] "(%(review_count)s 條評價)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "加添介紹" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "介紹:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "這蜀本書其 另蜀芘版本 着汝其 %(shelf_name)s 架架懸頂." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "這幫讀其書" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "加添讀書時間" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "汝故未讀這本書." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "汝寫其書評" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "汝做其評論" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "汝抄下其話" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "主題" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "所在" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "單單" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "添遘單單裏勢" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "加添" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLC 號:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "加添書皮" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "乞蜀芘書皮:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "關去" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "修改 \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "加添新書" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "確認書其資料" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "嚽是蜀隻新其作者" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "着𡅏乞新其作者開網頁: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "嚽是伓是本站已經有其書其另蜀芘版本?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "嚽是新其作品" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "轉去" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "題目:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "副題:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "系列:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "系列編號:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "語言:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "出版" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "出版者:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "頭版其時間:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "出版其時間:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "作者" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "除去 %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "%(name)s 其作者頁" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "加添作者:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "書皮" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "實體性質" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "格式:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "裝訂情況:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "頁數:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Openlibrary ID:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "%(book_title)s 其各芘版本" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "所有" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "語言:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "討版本" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "域名" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "狀態" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "動作" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s 頁" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s 頁" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s 語言" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "着 %(date)s 由 %(publisher)s 出版." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "由 %(publisher)s 出版." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "着 %(date)s 出版" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "拍了分數" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "修改狀態" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "確認電批" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "確認汝其電批地址" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "確認註冊使其碼已經發遘汝註冊其時候寫其電批地址了." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "儥好意思! 儂家討儥着這蜀芘碼." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "確認碼:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "交付" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "討儥着汝其碼?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "介發蜀回確認使其連結" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "電批地址:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "介發蜀回連結" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "社區" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "本站其儂" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "跨站社區" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "簿簿" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "讓別其使 Bookwyrm 其儂有能耐看見着汝其資料." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "汝乜乇前後都會使由汝其 資料設定 裏勢退出來." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "訊息關去" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "最近活動" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "受遘推薦" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "帳號鎖起去" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "汝有關注其關注伊其儂" +msgstr[1] "汝有關注其關注伊其儂" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "汝架架懸頂其書" +msgstr[1] "汝架架懸頂其書" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "發其乇" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "最近活動" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "儂其類別" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "使 Bookwyrm 其儂" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "所有討會着其儂" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "%(username)s 卜想讀 %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "%(username)s 讀完了 %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "%(username)s 開始讀 %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "%(username)s%(book_title)s 拍了分數" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "%(username)s 寫了 %(book_title)s 其書評" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "%(username)s 評了幾句 %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "%(username)s 抄下 %(book_title)s 裏勢其文字" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "發現" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "看蜀看在地 %(site_name)s 社區其新聞" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "看蜀看狀態" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "加裏 %(site_name)s 之前其最後蜀件事計! 起動汝涿蜀下下底其連結, 確認汝其電批:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "確認電批" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "或者躒裏其時候拍裏這蜀芘碼: \"%(confirmation_code)s\"." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "起動汝確認蜀下電批" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "或者躒裏其時候拍裏這蜀芘碼: \"%(confirmation_code)s\"." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "噯, 食去未?" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "電批設置" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "汝乞儂邀去加裏 %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "此刻躒裏" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "汝乞儂邀去加裏 %(site_name)s! 涿蜀下下底其連結去開帳號." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "了解故価 %(site_name)s 其資料:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "汝卜重新介編蜀隻 %(site_name)s 其密碼伓是. 涿蜀下下底其連結, 起蜀隻新其密碼, 介躒裏汝其帳號." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "重編密碼" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "㑚伓拍算重新介編密碼, 就伓使管這蜀封電批了." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "重新介編蜀芘 %(site_name)s 其密碼" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "共 %(username)s 偷講乇" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "偷講" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "所有訊息" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "汝現刻無收遘訊息." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "現刻世乇活動都無! 試蜀試先關注蜀隻儂" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s 讀書目標" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "汝乜乇前後都會使着汝自家其 資料頁 裏勢定下或者改蜀下汝其讀書目標" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "更新" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "汝其書" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "現刻這塊蜀本書都無! 試蜀試先討蜀本書吧" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "會使關注其儂" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "無乞我推薦儂" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "看簿簿" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "%(book_title)s 汝有讀過無?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "卜想讀" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "着𡅏讀" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "讀完了" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "汝着𡅏讀世乇?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "討蜀本書" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "討儥着 \"%(query)s\" 其書" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "開始使 %(site_name)s 以後, 汝也會使加添書." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "尋討" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "推薦其書" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "%(site_name)s 第一行時其書" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "討儥着書" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "歡迎" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "開始寫汝自家其介紹" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "添新書" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "討朋友" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "嚽就伓做了" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "完成" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "乞儂看其名字:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "概要:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "介紹蜀下汝自家" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "頭像:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "討儂" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "討儥着 \"%(query)s\" 其儂" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "開新群" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "由 %(username)s 管理" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "除去這芘群?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "做了無辦法退悔" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "除去" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "修改群" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "群名:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "群簡介:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "除去群" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "開單單" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "這芘群裏勢故無單單" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "修改群" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "討儂加裏" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "退出群" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "着𡅏關注汝" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "加添新其成員!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s 隻汝也有關注其儂關注伊" +msgstr[1] "%(mutuals)s 隻汝也有關注其儂關注伊" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s 本也有着汝架架懸頂其書" +msgstr[1] "%(shared_books)s 本也有着汝架架懸頂其書" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "討儥着汝可能卜討其成員 \"%(user_query)s\"" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "管理員" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "下蜀隻" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "通知" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "汝其書" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "群" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "讀書目標" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "資料來源:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "資料檔案:" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "書評收裏" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "攖裏" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "這幫攖裏其乇" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "這幫無攖裏乇" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "攖裏其情況" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "攖裏" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "開始攖裏:" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "故着𡅏做" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "刷新" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "%(display_counter)s 芘乇攖儥裏." +msgstr[1] "%(display_counter)s 芘乇攖儥裏." + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "題目" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "ISBN" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "作者" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "架架" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "書" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "看攖裏其書評" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "攖裏去" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "介試蜀回" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "會肯" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "儥肯" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "都領有" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "狀態" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "開帳號" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "這幫其書" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "去中心化" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "友好其" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "加裏 %(name)s" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "汝其帳號" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "躒裏" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "躒裏" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "會使! 電批地址確認好了." + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "名字:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "密碼:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "密碼儥記去?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "本站故価其資料" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "確認密碼:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "%(site_name)s 尋討" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "主導航單單" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "密碼" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "加裏" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "推薦" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "做野俊去!" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "放棄" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "除去這芘單單?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "修改單單" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "這芘單單現刻故是空其" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "關去" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "開起去" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "群" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "揀組" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "選蜀芘組" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "開蜀芘群" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "除去單單" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "汝向單單裏勢推薦了蜀本書!" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "汝添了蜀本書遘單單裏勢!" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "由 %(username)s 加添" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "單單位址" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "設定" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "除去" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "方向" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "加添書" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "推薦書" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "尋討" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "除去尋討其乇" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "存好了" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "汝其單單" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "所有單單" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "躒出" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "所有" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "有講遘我" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "改密碼" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "新密碼:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "卜揀其時區: " + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "發乇一般乞底儂看:" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "帳號" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "關係" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "讀完 \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "開始 \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "卜讀 \"%(book_title)s\"" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "除去這価讀書時間其紀錄?" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "進展" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "進度更新:" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "完成了" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "看所有其進展" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "除去這蜀條進展" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "開始了" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "修改讀書時間" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "除去這価讀書時間其紀錄" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "舉報" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "書攖裏" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "由別其分類掏結果" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "尋討類別" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "討儥着 \"%(query)s\" 其結果" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "告字" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "修改" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "告字" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "看見會着:" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "是" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "否" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "開始其日子:" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "結束其日子:" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "𡅏使:" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "寫告字" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "加添日子" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "先罔覷" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "開始其時候" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "結束其時候" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "𡅏使" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "停去" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "告字討儥着" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "改告字" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "事計其日子:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "圖" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "電批" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "傒勢停去:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "所有其儂" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "這蜀月日有使其" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "作品" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "實例活動" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "區段:" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "日" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "禮拜" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "各儂其註冊活動" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "註冊" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "發出其狀態" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "加添域名" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "域名:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "加添實例" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "實例:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "狀態:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "軟體:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "版本:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "詳細" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "活動" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "看全部" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "舉報:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "儂家關注其:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "備註" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "無寫備註" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "軟體" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "邀請" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "動作" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "無插" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "故是插蜀下" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "加添 IP 地址" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "IP 地址:" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "汝會使 CIDR 語法去遮攔 IP 段." + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "乞遮攔其 IP 地址其單單" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "地址" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "現刻故無遮攔世乇 IP 地址" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "管理" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "管理各儂" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "舉報" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "實例設定" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "網站設定" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "註冊" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "會使註冊" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "註冊停去其告字:" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "轉去看舉報" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "復蜀回開起去" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "解決去了" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "舉報: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "舉報: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "開起去" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "解決去了" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "舉報討儥着." + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "實例其資料" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "頁尾內容" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "實例其名字:" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "口號:" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "實例其介紹:" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "簡單其介紹:" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "着 joinbookwyrm.com 𡅏罔覷蜀下實例其樣式其時候使嚽. 無支持 HTML 或者 Markdown." + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "行爲規範:" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "標誌:" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "小標誌:" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "網站標誌:" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "支持其連結:" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "支持其題目:" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "管理員電批:" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "補充其資料:" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "汝其密碼:" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "加添日子" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "最近活動" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "無設定" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "看這隻儂其資料" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "本站" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "遠方" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "這隻儂其情況" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "電批:" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "(看舉報)" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "尾尾活動其時候:" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "討會着:" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "實例其情況" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "看蜀下實例" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "永古除去" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "設定" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "書攖裏" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "進展:" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "頁數" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "百分比" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "書其第 %(pages)s 頁" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "應" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "内容" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "留言:" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "發出" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "抄錄:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "'%(book_title)s' 裏勢抄其蜀段話" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "位址:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "頁碼:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "百分比:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "汝乞 '%(book_title)s' 寫其書評" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "書評:" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "中意" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "伓中意去" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "關注 @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "伓關注 @%(username)s 去" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "伓關注去" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "接受" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "文件" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "無拍分數" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "%(half_rating)s 粒星" +msgstr[1] "%(half_rating)s 粒星" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "%(rating)s 粒星" +msgstr[1] "%(rating)s 粒星" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "乞 %(title)s 拍了分數: %(display_rating)s 粒星" +msgstr[1] "乞 %(title)s 拍了分數: %(display_rating)s 粒星" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "定下目標" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "做了 %(percent)s%%!" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "前蜀隻" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "㑚乞關注我其儂看" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "分數拍出" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "拍分" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "註冊" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "舉報 @%(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "這蜀樁舉報會發乞 %(site_name)s 其審覈員處理." + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "開始讀" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "卜想讀" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "讀完了" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "評論了 %(book)s" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "乞 %(book)s 拍了分:" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "停去" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "%(username)s 其書" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s 讀書進展" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "修改目標" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s 故未定下 %(year)s 其讀書目標." + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "汝 %(year)s 其書" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "汝其群" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "群: %(username)s" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "單單: %(username)s" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "開單單" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "着 %(date)s 加裏" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "無儂關注 %(username)s" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "改蜀下自家其資料" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "看所有 %(size)s 其版本" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "看所有其書" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "RSS 訂閱" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "故無活動!" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/cs_CZ/LC_MESSAGES/django.mo b/locale/cs_CZ/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..b072eb1251 Binary files /dev/null and b/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/locale/cs_CZ/LC_MESSAGES/django.po b/locale/cs_CZ/LC_MESSAGES/django.po new file mode 100644 index 0000000000..9b0a72c229 --- /dev/null +++ b/locale/cs_CZ/LC_MESSAGES/django.po @@ -0,0 +1,7831 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Czech\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: cs\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Jeden den" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Týden" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Měsíc" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Nevyprší" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Neomezené" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Neplatné heslo" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Heslo se neshoduje" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Chybné heslo" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Datum dočtení nemůže být před datem začátku čtení." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Datum dočtení nemůže být před datem začátku čtení." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Datum ukončení čtení nemůže být v budoucnu." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Datum ukončení čtení nemůže být v budoucnu." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Špatně zadané uživatelské jméno nebo heslo" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Uživatel s tímto uživatelským jménem již existuje" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Uživatel s tímto e-mailem již existuje." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Tato e-mailová adresa nemůže být zaregistrována." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Neplatný kód" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Tato doména je blokována. Pokud se domníváte, že se jedná o chybu, obraťte se na správce." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Tento odkaz s typem souboru již byl pro tuto knihu přidán. Pokud není viditelný, požadavek stále není vyřízený." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Pořadí seznamu" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Název knihy" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Hodnocení" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Seřadit podle" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Vzestupně" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Sestupně" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Hlavní" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Úspěšně dokončeno" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Odkaz" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Upozornění" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Nebezpečí" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Automaticky vygenerována zpráva" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Čekající" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Sebesmazání" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "Vlastní deaktivace" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Zablokován moderátorem" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Odstraněn moderátorem" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Blokování domény" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Audiokniha" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "Ekniha" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Grafický román" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Pevná vazba" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Měkká vazba" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s nevypadá jako ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s nemá správný kontrolní součet ISBN, očekávali jsme %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Komentář" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recenze" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citát" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Sledovat" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Zablokovat" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "neoprávněné" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "chyba_připojení" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "neplatný_vztah" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Federované" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Blokováno" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s není platný remote_id" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s není platné uživatelské jméno" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "uživatelské jméno" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Uživatel s tímto uživatelským jménem již existuje." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Veřejný" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Skryté" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Sledující" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Soukromý" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "Aktivní" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Dokončeno" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Zastaveno" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Import byl zastaven" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Chyba při načítání knihy" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Nelze najít hledanou knihu" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "Selhalo" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Zdarma" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Zakoupitelné" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Dostupné k zapůjčtení" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Schváleno" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "Vyřešené hlášení" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "Znovu otevřené hlášení" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "Zpráva poslána nahlásiteli" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "Zpráva poslána nahlášenému" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "Pozastavený uživatel" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "Od-pozastavený uživatel" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "Změněna úroveň uživatelských oprávnění" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "Smazaný uživatelský účet" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "Blokované domény" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "Schválené domény" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "Položka byla smazána." + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Stav %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Komentář %(display_name)s k %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "Citát %(display_name)s z %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s' hodnocení knihy %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Hodnocení" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Komentáře" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Citace" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Vše ostatní" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Domovská časová osa" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Domov" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Zeď knih" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Knihy" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "Anglicky" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (katalánština)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (němčina)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (Esperanto)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (španělština)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (Basque)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (galicijština)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (italština)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Korejština)" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (finština)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (francouzština)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (litevština)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Nederlands (Nizozemština)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (norština)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (polština)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (portugalština (Brazílie))" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (portugalština (Evropa))" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (rumunština)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (švédština)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "Українська (Ukrajinština)" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (zjednodušená čínština)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (tradiční čínština)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "Ale ne!" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "Povolení zamítnuto" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "Nemáte oprávnění k zobrazení této stránky nebo provedení této akce. Úroveň vašeho uživatelského oprávnění je %(level)s." + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "Pokud si myslíte, že byste měli mít přístup, promluvte si se správcem vašeho BookWyrm serveru." + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Nenalezeno" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Vypadá to, že požadovaná stránka neexistuj!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "Soubor je příliš velký" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "Soubor, který nahráváte je příliš velký." + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Můžete zkusit použít menší soubor nebo požádat správce serveru BookWyrm, aby zvýšil*a nastavení DATA_UPLOAD_MAX_MEMORY_SIZE." + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Jejda!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Serverová chyba" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Něco se pokazilo! Omlouváme se." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Podrobnosti" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Vítejte na %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s je součástí BookWyrm, sítě nezávislých samosprávných komunit pro čtenáře. Zatímco můžete bezproblémově komunikovat s uživateli kdekoli v BookWyrmové síti, tato komunita je jedinečná." + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)s je nejmilovanější kniha na %(site_name)s s průměrným hodnocením %(rating)s z 5." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "Více %(site_name)s uživatelů chce přečíst %(title)s než kteroukoliv jinou knihu." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "%(title)s má nejrozporuplnější hodnocení ze všech knih na %(site_name)s." + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Zaznamenávejte si své čtení, povídejte si o knihách, pište hodnocení a objevujte další knihy ke čtení. BookWyrm je komunitně orientovaným software, bez reklam a proti korporátní, který je navržen tak, aby zůstal malý i osobní. Objevili jste chybu, nebo máte nápady na zlepšení či velkolepé sny, nebojte se ozvat." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Seznamte se s vašimi administrátory" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "Moderátoři a administrátoři %(site_name)s udržují tuto stránku v provozu, prosazuj kodex chování a nahlašuj spam a špatné chování." + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Moderátor" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Správce" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Poslat soukromou zprávu" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Kodex chování" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "Impresum" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Aktivní uživatelé:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Publikované statusy:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Verze softwaru:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "O %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Zásady ochrany osobních údajů" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s v knihách" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s v knihách" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "%(display_name)s - rok čtení" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Sdílet tuto stránku" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Kopírovat adresu" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Zkopírováno!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "Sdílení statusu: veřejný s klíčem" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Stránku může vidět kdokoliv s celou adresou." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Nastavit stránku jako soukromou" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Stav sdílení: soukromý" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Stránka je soukromá, jen vy ji můžete vidět." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Zveřejnit stránku" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "Když nastavíte svoji stránku soukromou, starý klíč již neumožní přístup ke stránce. Nový klíč bude vytvořen, pokud bude stránka znovu zveřejněna." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Bohužel %(display_name)s nedokončil žádné knihy v %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "V roce %(year)s přečetli %(display_name)s %(books_total)s knihu
    s celkovým počtem %(pages_total)s stran!" +msgstr[1] "V roce %(year)s přečetli %(display_name)s %(books_total)s knihy
    s celkovým počtem %(pages_total)s stran!" +msgstr[2] "V roce %(year)s přečetli %(display_name)s %(books_total)s knih
    s celkovým počtem %(pages_total)s stran!" +msgstr[3] "V roce %(year)s jste přečetli %(display_name)s %(books_total)s knih
    s celkovým počtem %(pages_total)s stran!" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "To je skvělé!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "To dělá v průměru %(pages)s stránek na knihu." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "(Nebyly nalezeny údaje o stránkách pro %(no_page_number)s knihu)" +msgstr[1] "(Nebyly nalezeny údaje o stránkách pro %(no_page_number)s knihy)" +msgstr[2] "(Nebyly nalezeny údaje o stránkách pro %(no_page_number)s knih)" +msgstr[3] "(Nebyly nalezeny údaje o stránkách pro %(no_page_number)s knih)" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "Nejkratší četbou v tomto roce…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "od" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s stran" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "…a nejdelší" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "%(display_name)s si nastavili cíl přečíst %(goal)s knihu v roce %(year)s
    a dosáhli %(goal_percent)s%% tohoto cíle" +msgstr[1] "%(display_name)s si nastavili cíl přečíst %(goal)s knihy v roce %(year)s
    a dosáhli %(goal_percent)s%% tohoto cíle" +msgstr[2] "%(display_name)s si nastavili cíl přečíst %(goal)s knih v roce %(year)s
    a dosáhli %(goal_percent)s%% tohoto cíle" +msgstr[3] "%(display_name)s si nastavili cíl přečíst %(goal)s knih v roce %(year)s
    a dosáhli %(goal_percent)s%% tohoto cíle" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "Jen tak dál!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "%(display_name)s vytvořili %(ratings_total)s hodnocení,
    jejich průměrné hodnocení je %(rating_average)s" +msgstr[1] "%(display_name)s vytvořili %(ratings_total)s hodnocení,
    jejich průměrné hodnocení je %(rating_average)s" +msgstr[2] "%(display_name)s vytvořili %(ratings_total)s hodnocení,
    jejich průměrné hodnocení je %(rating_average)s" +msgstr[3] "%(display_name)s vytvořili %(ratings_total)s hodnocení,
    jejich průměrné hodnocení je %(rating_average)s" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "Jejich nejlepší hodnocení" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "Jejich hodnocení: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "Všechny knihy %(display_name)s přečtené v %(year)s" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Upravit autora" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Podrobnosti o autorovi" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Aliasy:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Narozený/á:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Zemřel/a:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Externí odkazy" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Wikipedie" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Zobrazit na Wikidatech" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "Webová stránka" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Zobrazit ISNI záznam" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "Prohlédnout na ISFDB" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Načíst data" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "Zobrazit na OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Zobrazit na Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "Zobrazit na LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Zobrazit na Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Knihy od %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Upravit autora:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Přidáno:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Aktualizováno:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Naposledy upraveno od:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Metadata" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Jméno:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Oddělte více hodnot čárkami." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Životopis:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Odkaz na Wikipedii:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "Webová stránka:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Datum narození:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Datum úmrtí:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Identifikátory autora" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Openlibrary klíč:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "Inventaire ID:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Librarything klíč:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Klíč Goodreads:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "ISFDB:" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Uložit" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Zrušit" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "Načítání dat se připojí k %(source_name)s a zkontrolujte metadata o tomto autorovi, která zde nejsou přítomna. Stávající metadata nebudou přepsána." + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Potvrdit" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "Nelze se připojit ke vzdálenému zdroji." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Upravit knihu" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Klepnutím přidáte obal" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Nezdařilo se obálku načíst" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Kliknutím zvětšíte" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s hodnocení)" +msgstr[1] "(%(review_count)s hodnocení)" +msgstr[2] "(%(review_count)s hodnocení)" +msgstr[3] "(%(review_count)s hodnocení)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Přidat popis" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Popis:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s vydání" +msgstr[1] "%(count)s vydání" +msgstr[2] "%(count)s vydání" +msgstr[3] "%(count)s vydání" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Toto vydání bylo odloženo v:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "Jiné vydání této knihy je na vaší poličce %(shelf_name)s." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Vaše aktivita čtení" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Přidat datum přečtení" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "Tuto knihu jste ještě nečetly." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Tvoje hodnocení" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Vaše komentáře" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Vaše citace" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Témata" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Místa" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Seznamy" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Přidat na seznam" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Přidat" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "Kopírovat ISBN" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBN zkopírováno!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLC číslo:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "Audible ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "ISFDB ID:" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna ID:" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Přidat obálku" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Nahrát obálku:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "Nahrát obal z URL:" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Náhled obálky" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Zavřít" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Úprava \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Přidat knihu" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "Nepodařilo se uložit knihu, pro více informací se podívejte na chyby níže." + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Potvrdit informace o knize" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "Je \"%(name)s\" jedním z těchto autorů?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Autor %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "Autor %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Další informace najdete na isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Tohle je nový autor" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Vytvoření nového autora: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Je to edice již existující práce?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Toto je nová práce" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Zpět" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Název:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Podtitulek:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Série:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Číslo série:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Jazyky:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Témata:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Přidat téma" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Odebrat téma" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Přidat další téma" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Datum publikace" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Vydavatel:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Prvně vydáno:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Datum vydání:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Autoři" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Odstranit %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Stránka autora %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Přidat autory:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Přidat autora" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Jane Doe" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Přidat dalšího autora" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Obálka" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Fyzické vlastnosti" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Formát:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Podrobnosti o formátu:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Stránek:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Identifikátory knih" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Openlibrary ID:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Editace %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "Edice %(work_title)s" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Nemůžete najít edici, kterou hledáte?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Přidat další edici" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "Jakýkoliv" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Jazyk:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Vyhledávat edice" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Přidat odkaz na soubor" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "Odkazy z neznámých domén musí být před přidáním schváleny moderátorem." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Typ souboru:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Dostupnost:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Upravit odkazy" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Odkazy pro \"%(title)s\"" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Přidal/a" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Typ souboru" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Doména" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Status" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Akce" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Neznámý uživatel" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Nahlásit spam" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Pro tuto knihu nejsou k dispozici žádné odkazy." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Přidat odkaz na soubor" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Odkazy na soubory" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "Získat kopii" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Žádné odkazy nejsou k dispozici" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "Opoštíte BookWyrm" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "Tento odkaz vás pošle na: %(link_url)s.
    Chcete tam pokračovat?" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Pokračovat" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s stran" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s stran" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s jazyk" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Publikováno %(date)s vydavatelem %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Publikoval %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Vydáno %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "ohodnotil" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "Série od" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "Kniha %(series_number)s" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "Nevytříděná kniha" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "Během načítání dojde k připojení k %(source_name)s a ověření, zda o této knize neexistují metadata, která zde nejsou uvedena. Stávající metadata nebudou přepsána." + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Upravit recenzi" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Editovat citát" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Upravit komentář" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Upravit status" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Potvrdit email" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Potvrďte svoji e-mailovou adresu" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Potvrzovací kód byl odeslán na e-mailovou adresu, kterou jste použili při registraci vašeho účtu." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Omlouváme se! Nenašli jsme tento kód." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Potvrzovací kód:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Odeslat" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Nemůžete najít svůj kód?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Znovu odeslat potvrzovací kód" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "E-mailová adresa:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Poslat odkaz znovu" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Komunita" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Místní uživatelé" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Federovaná komunita" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Adresář" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Udělejte svůj profil viditelný ostatním uživatelům BookWyrm." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Připojit k adresáři" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Můžete se kdykoliv odhlásit v nastavení profilu." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Odmítnout tuto zprávu" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Řadit podle" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Nedávno aktivní" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Navrhované" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Uzamčený účet" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "sledující, kterého sledujete" +msgstr[1] "sledující, které sledujete" +msgstr[2] "sledujících, které sledujete" +msgstr[3] "sledujících, které sledujete" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "kniha na vašich poličkách" +msgstr[1] "knihy na vašich poličkách" +msgstr[2] "knih na vašich poličkách" +msgstr[3] "knih na vašich poličkách" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "příspěvky" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "naposledy aktivní" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Druh uživatele" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "Uživatelé BookWyrmu" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "Všichni známí uživatelé" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "%(username)s chce přečíst %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "%(username)s přečetl %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "%(username)s začal číst %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "%(username)s ohodnotil %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "%(username)s hodnotil*a %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "%(username)s okomentoval %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "%(username)s citoval %(book_title)s" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "Objevovat" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "Podívejte se, co je nového v místní komunitě %(site_name)s" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Zobrazit status" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "Ještě jeden krok, než se připojíte k %(site_name)s! Potvrďte, prosím, svou e-mailovou adresu kliknutím na odkaz níže:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Potvrdit e-mail" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Nebo zadejte kód \"%(confirmation_code)s\" při přihlášení." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "Potvrďte prosím svoji e-mailovou adresu" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Nebo zadejte kód \"%(confirmation_code)s\" při přihlášení." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Nazdar," + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm hostovaný na %(site_name)s" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "Nastavení e-mailu" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "Jste pozváni na %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Přidej se teď" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "Další informace o %(site_name)s." + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "Jste pozváni k připojení se k %(site_name)s! Klikněte na odkaz níže pro vytvoření účtu." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "Další informace o %(site_name)s:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "@%(reporter)s označil odkazovou doménu k moderaci." + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "@%(reporter)s označil chování @%(reportee)s pro moderaci." + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "Zobrazit přehled" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "Nový přehled pro %(site_name)s" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "Požádali jste o obnovení hesla %(site_name)s. Pro nastavení nového hesla a přihlášení k vašemu účtu klikněte na odkaz níže." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Obnovit heslo" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Pokud jste nepožádali o obnovení hesla, můžete tento email ignorovat." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Resetovat Vaše %(site_name)s heslo" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "Toto je testovací email." + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "Testovací email" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "%(site_name)s domovská stránka" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Kontaktujte správce stránky" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "Připojte se k BookWyrmu" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "Soukromé zprávy s %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "Soukromé zprávy" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Všechny zprávy" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Momentálně nemáte žádné zprávy." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Momentálně tu nejsou žádné aktivity! Pro začátek zkuste sledovat nějakého uživatele" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "Případně můžete zkusit povolit více typů stavů" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s cíl pro čtení" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Cíl čtení můžete nastavit nebo změnit kdykoliv na vaší profilové stránce" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Aktualizace" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Vaše knihy" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Momentálně zde nejsou žádné knihy! Zkuste pro začátek nějakou vyhledat" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "Máte k dispozici data z jiné služby, jako je GoodReads?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Importovat historii čtení" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Koho sledovat" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Nezobrazovat navrhované uživatele" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Zobrazit adresář" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "Konec roku je tím nejlepším okamžikem na ohlednutí se za všemi knihy přečtenými za posledních 12 měsíců. Kolik stránek jste přečetli? Která kniha je vámi nejlépe hodnocená? Nashromáždili jsme tyto statistiky a další!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "Objevte svoje statistiky za %(year)s!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "Četl jsi %(book_title)s?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Přidat do vašich knih" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "K přečtení" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Rozečteno" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Přečteno" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Četba pozastavena" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Co teď čtete?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Vyhledat knihu" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "Nenalezeny žádné knihy pro \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Můžete přidat knihy, jakmile začnete používat %(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Hledat" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Doporučené knihy" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "Výsledky vyhledávání" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Populární na %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Nenalezeny žádné knihy" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Uložit a pokračovat" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Vítejte" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Tady jsou pro začátek některé první kroky." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Vytvořte si vlastní profil" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Přidat knihy" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Najít přátele" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Přeskočit tento krok" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Dokončit" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Zobrazované jméno:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Souhrn:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Něco málo o vás" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Avatar:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Ručně schvalovat sledující:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Zobrazit tento účet v navrhovaných uživatelích:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Váš účet se zobrazí v adresáři a může být doporučen ostatním uživatelům BookWyrm." + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "Můžete sledovat uživatele na jiných instancích BookWyrm i federovaných službách jako je Mastodon." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Vyhledat uživatele" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "Nenalezeni žádní uživatelé pro \"%(query)s\"" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "Vytvořit skupinu" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "Správce %(username)s" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Smazat tuto skupinu?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Tuto akci nelze vrátit zpět" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Smazat" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Upravit skupinu" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Název skupiny:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Popis skupiny:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Smazat skupinu" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Členové této skupiny mohou vytvářet skupinové seznamy." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Vytvořit seznam" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "Tato skupina nemá žádné seznamy" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Upravit skupinu" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "Vyhledat uživatele pro přidání" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Opustit skupinu" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "Sleduje vás" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "Přidat nové členy!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s sledující, kterého sledujete" +msgstr[1] "%(mutuals)s sledující, které sledujete" +msgstr[2] "%(mutuals)s sledujících, které sledujete" +msgstr[3] "%(mutuals)s sledujících, které sledujete" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s kniha na vašich poličkách" +msgstr[1] "%(shared_books)s knihy na vašich poličkách" +msgstr[2] "%(shared_books)s knih na vašich poličkách" +msgstr[3] "%(shared_books)s knih na vašich poličkách" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "Nebyli nalezeni žádní potenciální členové pro \"%(user_query)s\"" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Správce" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "Nenalezena žádná skupina." + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "Toto je domovská stránka knihy. Podívejme se, co tu můžete dělat!" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "Stránka knihy" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "Ukončit prohlídku" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "Další" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "Zde můžete nastavit stav čtení pro tuto knihu. Můžete stisknout tlačítko pro přechod do další fáze nebo použijte tlačítko rozbalovací nabídky pro výběr stavu čtení, který chcete nastavit." + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "Stav četby" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "Můžete zde také ručně zadat data čtení. Na rozdíl od změny stavu čtení za pomocí předchozí metody, ruční přidání dat automaticky nepřidává knihy do poliček K přečtení nebo Čtu." + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "Máte oblíbenou knihu, kterou si každý rok znovu čtetete? Máte štěstí - můžete přidat více dat přečtení pro tutéž knihu 😀" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "Kniha může mít více verzí v různých formátech nebo jazycích. Můžete si vybrat, jakou verzi chcete použít." + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "Jiná vydání" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "Zde můžete napsat recenzi, komentář nebo citát." + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "Sdílejte své myšlenky" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "Pokud jste četli tuto knihu, můžete vložit recenzi včetně volitelného hodnocení hvězdičkou" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "Zveřejnit hodnocení" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "Své celkové myšlenky na tuto knihu můžete sdílet s jednoduchým komentářem" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "Okomentovat" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "Přečetli jste právě nějakou perfektní prózu? Dejte světu vědět sdílením citátu!" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "Zasdílet citát" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "Pokud by vaše recenze nebo komentář mohl vyzradit překvapivý moment knihy pro někoho, kdo ji ještě nečetl, můžete skrýt váš příspěvek za upozornění na vyzrazení děje" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "Vyzrazení děje" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "Soukromí příspěvku" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "Některé e-knihy mohou být staženy zdarma z externích zdrojů. Zobrazí se zde." + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "Odkazy ke stažení" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "Pokračujte v prohlídce výběrem vašich knih z rozbalovacího menu." + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "Ok" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "Vítejte na stránce vaší skupiny! Zde můžete přidávat a odebírat uživatele, vytvářet uživatelsky upravované seznamy a upravovat detaily skupiny." + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "Vaše skupina" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "Najít uživatele" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "Zde se objeví členové vaší skupiny. Vlastník skupiny je označen hvězdičkou." + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "Členové skupiny" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "Seznamy skupiny" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "Gratulujeme, dokončili jste prohlídku! Teď už znáte základy, ale je tu spousta dalšího k prozkoumání na vlastní pěst. Šťastné čtení!" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "Ukončit prohlídku" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "Vítejte na Bookwyrm!

    Chtěli byste podniknout komentovanou prohlídku, která vám pomůže začít?" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "Komentovaná prohlídka" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "Ne, děkuji" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "Ano, prosím!" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "Vyhledávejte knihy, uživatele nebo seznamy pomocí tohoto vyhledávacího pole." + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "Vyhledávací pole" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "Vyhledejte záznamy pomocí ISBN čárového kódu za použití fotoaparátu vašeho zařízení - hodí se, když jste v knihkupectví nebo knihovně!" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "Čtečka čárových kódů" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "Navigační lišta" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "Zde budou zobrazeny knihy na vašich poličkách stavu čtení." + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "Časové osy" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "Zvoneček se rozsvítí, když máte nové oznámení. Když to udělá, klikněte na něj a zjistíte, co je nového!" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Upozornění" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "Zkuste vybrat Profil z rozbalovacího menu pro pokračování v prohlídce." + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "Menu profilu a nastavení" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "Poličky jsou určeny pro uspořádání knih pro sebe, zatímco seznamy jsou určeny pro sdílení s ostatními." + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "Podívejme se, jak vytvořit nový seznam." + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "Klikněte na tlačítko Vytvořit seznam a potom Další pro pokračování v prohlídce" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "Vytvořit nový seznam" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "Musíte svému seznamu dát jméno a můžete mu případně dát popis, který pomůže ostatním lidem, aby pochopili, o čem je." + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "Vyberte, kdo zde může vidět váš seznam. Seznam možností ochrany soukromí funguje stejně jako jsme viděli při odesílání recenzí knih. To je běžný napříč celým Bookwyrm." + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "Soukromí seznamu" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "Dále v naší prohlídce prozkoumáme Skupiny!" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "Další: Skupiny" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "Vezmi mě tam" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "Vyhledávání" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "Pokud kniha, kterou hledáte, není uvedena, zkuste načíst více záznamů z jiných zdrojů, jako je Open Library nebo Inventaire." + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "Načíst více záznamů" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "Pokud vaše kniha není ve výsledcích, zkuste upravit hledané výrazy." + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "Vyhledat znovu" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "Pokud stále nemůžete najít svoji knihu, můžete přidat záznam ručně." + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "Přidat záznam ručně" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "Importovat, ručně přidat nebo zobrazit existující knihu pro pokračování v prohlídce." + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "Pokračovat v prohlídce" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "Toto je stránka, kde jsou uvedeny vaše knihy, uspořádány do policí." + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "Vaše knihy" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "Poličky stavu čtení" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "Přidávání vlastních poliček." + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "Pokud máte exportovaný soubor z jiné služby, jako je Goodreads nebo LibraryThing, můžete jej importovat zde." + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "Importovat z jiné služby" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "Teď, když jsme prozkoumali knihovny, podívejme se na související koncept: seznamy knih!" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "Klikněte na odkaz Seznamy pro pokračování v prohlídce." + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "Můžete vytvořit skupinu s ostatními uživateli nebo se k ní připojit. Skupiny mohou sdílet skupinově řízené seznamy knih a v budoucnu budou moci dělat další věci." + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "Skupiny" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "Vytvořeme novou skupinu!" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "Klikněte na tlačítko Vytvořit skupinu a potom Další pro pokračování v prohlídce" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "Dejte své skupině název a popište, o čem je. Můžete vytvořit uživatelské skupiny pro jakýkoliv účel - čtecí skupinu, přátelé, cokoliv!" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "Vytváření skupiny" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "Skupiny mají nastavení ochrany osobních údajů stejně jako příspěvky a seznamy, kromě toho, že soukromí skupiny nemůže být sledující." + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "Viditelnost skupiny" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "Jakmile jste spokojeni s tím, jak je vše nastaveno, klikněte na tlačítko Uložit pro vytvoření nové skupiny." + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "Vytvořte a uložte skupinu pro pokračování v prohlídce." + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "Uložte svou skupinu" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "Toto je váš uživatelský profil. Všechny vaše nejnovější aktivity zde budou uvedeny. Ostatní uživatelé Bookwyrmu mohou také vidět části této stránky - co vidí závisí na vašem nastavení soukromí." + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "Uživatelský profil" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "Cíl pro čtení" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "Zde můžete vidět své skupiny nebo vytvořit nové. Skupina spojuje uživatele Bookwyrm a umožňuje jim spravovat seznamy společně." + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "Zde můžete vidět své seznamy nebo vytvořit nové. Seznam je sbírka knih, které mají něco společného." + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "Vyhledejte knihu nebo autora pro pokračování v prohlídce." + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "Najít knihu" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "Zatím není žádná aktivita pro tento hashtag!" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "Importovat seznam knih" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "Neplatný CSV soubor" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "Momentálně můžete importovat %(display_size)s knih každý %(import_limit_reset)s den." +msgstr[1] "Momentálně můžete importovat %(display_size)s knih každé %(import_limit_reset)s dny." +msgstr[2] "Momentálně můžete importovat %(display_size)s knih každých %(import_limit_reset)s dní." +msgstr[3] "Momentálně můžete importovat %(display_size)s knih každých %(import_limit_reset)s dní." + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "Zbývá %(display_left)s." + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "V průměru, nedávné importy zabrali %(hours)s hodin." + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "V průměru, nedávné importy zabrali %(minutes)s minut." + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "Zdroj dat:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "Goodreads (CSV)" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "Storygraph (CSV)" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "LibraryThing (TSV)" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "OpenLibrary (CSV)" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "Calibre (CSV)" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "Můžete si stáhnout svá Goodreads data z Import/Export stránky vašeho Goodreads účtu." + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "Soubor dat:" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "Zahrnout recenze" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Vytvořte nové poličky, pokud neexistují" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Nastavení ochrany soukromí pro importované recenze a poličky:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "Importovat" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "Dosáhli jste limitu importu." + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "Importy jsou dočasně vypnuty; děkujeme vám za trpělivost." + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "Nedávné importy" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "Datum vytvoření" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "Naposledy aktualizováno" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "Položky" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "Žádné nedávné importy" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "Stav importu" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "Importy" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "Import byl zahájen:" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "Zpracovává se" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "Obnovit" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "Zastavit import" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "%(display_counter)s položka vyžaduje ruční schválení." +msgstr[1] "%(display_counter)s položky vyžadují ruční schválení." +msgstr[2] "%(display_counter)s položek vyžaduje ruční schválení." +msgstr[3] "%(display_counter)s položek vyžaduje ruční schválení." + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "Zkontrolovat položky" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "%(display_counter)s položku se nepodařilo importovat." +msgstr[1] "%(display_counter)s položky se nepodařilo importovat." +msgstr[2] "%(display_counter)s položek se nepodařilo importovat." +msgstr[3] "%(display_counter)s položek se nepodařilo importovat." + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "Zobrazit a odstranit potíže s chybami" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "Řada" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "Název" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "ISBN" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "Openlibrary klíč" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "Autor" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "Polička" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "Kniha" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "Náhled importu není dostupný." + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "Zatím žádné položky nepotřebují kontrolu" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "Zobrazit importovanou recenzi" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "Importováno" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "Vyžaduje manuální kontrolu" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "Opakovat" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "Tento import je ve starém formátu, který již není podporován. Pokud chcete opravit chybějící položky z tohoto importu, klikněte na tlačítko níže pro aktualizaci formátu importu." + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "Aktualizovat import" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "Importovat BookWyrm účet" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "Neplatný import soubor" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "Krok 1:" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "Krok 2:" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "Uživatelský profil" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "Přepíše zobrazované jméno, shrnutí a avatar" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "Uživatelská nastavení" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "Přepíše:" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "Zda je vyžadováno ruční schválení, aby ostatní uživatelé mohli sledovat váš účet" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "Zda jsou na vašem profilu zobrazeni sledující/sledovaní" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "Zda je váš cíl zobrazen na vašem profilu" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "Zda vidíte návrhy na sledování uživatelů" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "Zda je váš účet navrhován ostatním" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "Vaše časové pásmo" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "Výchozí nastavení soukromí příspěvků" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "Sledující a sledovaní" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "Uživatelské bloky" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "Cíle pro čtení" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "Přepíše cíle pro všechny roky uvedené v importovaném souboru" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "Poličky" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "Historie čtení" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "Recenze knih" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "Komentáře ke knihám" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "Seznamy knih" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "Uložené seznamy" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "Řešení problémů s importáváním" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "Schválení návrhu natrvalo přidá navrhovanou knihu do vašich poliček a spojí vaše data čtení, recenze a hodnocení s touto knihou." + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "Schválit" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "Odmítnout" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "Neúspěšné položky" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "Řešení problémů" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "BookWyrm byl od tohoto importu aktualizován s opravou chyb" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "Kontaktujte svého administrátora nebo otevřete problém, pokud vidíte neočekávané neúspěšné položky." + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Stav importu uživatelů" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Uživatelské importy" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Celkem" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statusy" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Sledování a blokování" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Importované knihy" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Řešení problémů s importáváním" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Budete moci zkusit tento import znovu %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Vztah" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Příčina" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "Vytvořit účet" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "Omlouváme se! Tento kód pozvánky již není platný." + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "Nedávné knihy" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Decentralizovaný" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "Přátelský" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "Proti-korporátní" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "Připojil se k %(name)s" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "Zažádat o připojení" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "Registrace na %(name)s jsou uzavřené" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "Děkujeme! Váš požadavek byl přijat." + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "Váš účet" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "Přihlásit se" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "Přihlásit se" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "Úspěch! E-mailová adresa byla potvrzena." + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Uživatelské jméno:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "Heslo:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "Zapomněli jste heslo?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "Více o této stránce" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "Potvrďte své heslo:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "Odkaz pro obnovení hesla bude odeslán na %(email)s, pokud existuje účet používající tuto e-mailovou adresu." + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "Odkaz pro obnovení hesla bude odeslán na vaši e-mailovou adresu" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "Obnovit heslo" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "Znovu aktivovat účet" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "Znovu aktivovat účet" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "Hledat knihu, autora, uživatele nebo seznam" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "Skenovat čarový kód" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "Hlavní navigační menu" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "heslo" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "Zobrazit/Skrýt heslo" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "Připojit se" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "Stav úspěšně odeslán" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "Chyba při odesílání stavu" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "Přidat „%(title)s“ do tohoto seznamu" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "Navrhnout „%(title)s“ pro tento seznam" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "Navrhnout" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "Od-uložit" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "Vytvořeno %(username)s a spravováno %(groupname)s" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "Spravovat" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "Čekající knihy" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "Vše je nastaveno!" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "%(username)s říká:" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "Navrhnuto" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "Zahodit" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "Smazat tento seznam?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "Upravit seznam" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "%(list_name)s, seznam od %(owner)s" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "na %(site_name)s" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "Tento seznam je momentálně prázdný" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "Uzavřené" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "Pouze vy můžete přidávat a odebírat knihy z tohoto seznamu" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "Otevřené" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "Kdokoli může přidat knihy do tohoto seznamu" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "Skupina" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "Členové skupiny mohou přidávat a odebírat z tohoto seznamu" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "Vybrat skupinu" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "Vyberte skupinu" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "Zatím nemáte žádné skupiny!" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "Vytvořit skupinu" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "Smazat seznam" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +msgid "Notes:" +msgstr "Poznámky:" + +#: bookwyrm/templates/lists/item_notes_field.html:19 +msgid "An optional note that will be displayed with the book." +msgstr "Volitelná poznámka, která bude zobrazena s knihou." + +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "Tato kniha je již na tomto seznamu." + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "Úspěšně jste navrhli knihu pro tento seznam!" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "Úspěšně jste přidali knihu do tohoto seznamu!" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "Tento seznam je momentálně prázdný." + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "Upravit poznámky" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "Přidat poznámky" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "Přidáno %(username)s" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "Umístění seznamu" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "Odstranit" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "Přidat knihy" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "Navrhnout knihy" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "hledat" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "Vyčistit vyhledávání" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "Nebyly nalezeny žádné knihy odpovídající dotazu „%(query)s“" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "Vložit tento seznam na webové stránky" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "Uloženo" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "Nebyly nalezeny žádné seznamy." + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "Vaše seznamy" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "Všechny seznamy" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "Uložené seznamy" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "Váš účet jste přesunuli na %(username)s" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "Můžete zrušit přesunutí pro obnovení všech funkcí, ale někteří sledující možná již přestali tento účet sledovat." + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "Vrátit zpět" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "Odhlásit se" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s přijali vaši pozvánku do skupiny \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s a %(second_user)s přijali vaši pozvánku do skupiny \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s a %(other_user_display_count)s další přijali vaši pozvánku do skupiny \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s navrhli přidat %(book_title)s do vašeho seznamu \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s přidali %(book_title)s a %(second_book_title)s do vašeho seznamu \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s navrhli přidání %(book_title)s a %(second_book_title)s do vašeho seznamu „%(list_name)s“" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "%(related_user)s přidali knihu do jednoho z vašich seznamů" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "Varování o obsahu" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "Vše" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "Zmínky" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "%(account)s není platné uživatelské jméno" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "Zkontrolujte, zda máte správné uživatelské jméno, než to zkusíte znovu" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "%(account)s nebyl nalezen nebo %(remote_domain)s nepodporuje zjišťování identit" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "%(account)s byl nalezen, ale %(remote_domain)s nepodporuje 'vzdálená sledování'" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "Zkuste namísto toho vyhledat %(user)s na %(remote_domain)s" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "Něco se pokazilo při pokusu o sledování %(account)s" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "Zkontrolujte, zda máte správné uživatelské jméno, než to zkusíte znovu." + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "Zablokovali jste %(account)s" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "%(account)s vás zablokovali" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "Již %(account)s sledujete" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "Již jste %(account)s požádali o sledování" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "Nejdříve se přihlaste..." + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "Deaktivovat účet" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "Deaktivovat účet" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "Trvale odstranit účet" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "Odstranění vašeho účtu nelze vrátit zpět. Uživatelské jméno nebude k dispozici pro budoucí registraci." + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Vypnout 2FA" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "Vypnout dvoufázové ověření" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "Zakázáním 2FA umožníte komukoliv s vaším uživatelským jménem a heslem se přihlásit k vašemu účtu." + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "Vypnout 2FA" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "Upravit profil" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "Profil" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "Zobrazení" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "Soukromí" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "Preferované časové pásmo: " + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "Exportovat BookWyrm účet" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Oblíbené" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "Ve vašem novém BookWyrm účtu si můžete vybrat, co budete chtít importovat: nebudete muset importovat vše, co je vyexportováno." + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Nastavit 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "dokončeno" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "Nahlásit" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "\n" +" Skenovat čárový kód\n" +" " + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "Pořaduji přístup ke kameře..." + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "Udělte přístup k fotoaparátu pro naskenování čárového kódu knihy." + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "Skenuji..." + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "Zarovnejte čárový kód své knihy s kamerou." + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "ISBN naskenováno" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "Manuálně přidat knihu" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "Přihlaste se pro import nebo přidání knih." + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "Vyhledávací dotaz" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "Různé" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "Přidat doménu" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "Doména:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Zobrazit vše" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "Nahlášení:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Sledované námi:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Sledovaní jimi:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Všichni uživatelé z této instance budou znovu aktivováni." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "Úspěšně dokončeno!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Úspěšně zablokováno:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Selhalo:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "Očekává soubor JSON ve formátu poskytovaném FediBlockem, se seznamem položek, které mají instanci a URL. Například:" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "Název instance" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "Naposledy aktualizováno" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "Software" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "Nebyly nalezeny žádné instance" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "Zastavit import?" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "Zakázat zahájení nových importů" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "Vypnout importy" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "Uživatelé momentálně nemohou zahájit nové importy" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "Zapnout importy" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "Omezit množství importů" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "Nastavit limit" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Zakázat zahájení nových uživatelských exportů" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Toto je určeno pouze pro použití v případě, že se věci s exportem velmi pokazily, a při řešení problémů je třeba tuto funkci pozastavit." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Během zákazu exportů, uživatelé nebudou moci spouštět nové exporty účtů, ale stávající exporty nebudou ovlivněny." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Zakázat uživatelské exporty" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "Omezit jak často mohou uživatelé importovat a exportovat" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "Kodex chování:" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "Aktivovat uživatele" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "Admin klíč:" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "Administrátorský klíč byl vytvořen při instalaci BookWyrm. Administrátorský klíč můžete získat spuštěním ./bw-dev admin_code z příkazového řádku na vašem serveru." + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "Všechny knihy" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "Boostnout" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "Zrušit boostnutí" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "Odpovědět" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "Tvoje hodnocení knihy '%(book_title)s'" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "Recenze:" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "Volte moudře! Vaše uživatelské jméno nebude možné změnit." + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "Plánuji si přečíst" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "Přestat číst" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "Přečteno" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "citoval*a %(book)s od %(author_name)s" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "přečetl*a %(book)s od %(author_name)s" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "přečetl*a %(book)s" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "hodnotil*a %(book)s od %(author_name)s" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "hodnotil*a %(book)s" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "Hodnocení a komentáře" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "Připojil se %(date)s" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "%(username)s nemá žádné následovatele" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "Sledovaní" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s nesleduje žádné uživatele" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "Prozatím žádná hodnocení či komentáře!" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "Upravit profil" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "Zobrazit všechny %(size)s" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "Zobrazit všechny knihy" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "%(current_year)s cíl pro čtení" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "Kanál RSS" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "Zobrazit profil a více" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "%(title)s: %(subtitle)s" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + diff --git a/locale/cy_GB/LC_MESSAGES/django.mo b/locale/cy_GB/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..a915fce90c Binary files /dev/null and b/locale/cy_GB/LC_MESSAGES/django.mo differ diff --git a/locale/cy_GB/LC_MESSAGES/django.po b/locale/cy_GB/LC_MESSAGES/django.po new file mode 100644 index 0000000000..e7effba3fb --- /dev/null +++ b/locale/cy_GB/LC_MESSAGES/django.po @@ -0,0 +1,7903 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Welsh\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: cy\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Un diwrnod" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Un wythnos" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Un mis" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Ddim yn dod i ben" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Diderfyn" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Cyfrinair anghywir" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Nid yw'r cyfrinair yn cyfateb" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Cyfrinair anghywir" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Ni all dyddiad gorffen darllen fod cyn y dyddiad dechrau." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Ni all dyddiad atal darllen fod cyn y dyddiad dechrau." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Ni all dyddiad atal darllen fod yn y dyfodol." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Ni all dyddiad gorffen darllen fod yn y dyfodol." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Defnyddiwr gyda'r enw defnyddiwr hwn eisoes yn bodoli" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Defnyddiwr gyda'r e-bost hwn eisoes yn bodoli." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Côd anghywir" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Mae'r parth hwn wedi'i rwystro. Cysylltwch â'ch gweinyddwr os ydych chi'n meddwl bod hwn yn gamgymeriad." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Mae'r ddolen hon gyda math o ffeil eisoes wedi'i hychwanegu ar gyfer y llyfr hwn. Os nad yw'n weladwy, mae'r parth yn yr arfaeth o hyd." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Trefn Rhestr" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Teitl y Llyfr" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Cyfraddiad" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Trefnu yn ôl" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Esgynnol" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Gostyngol" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Prif" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Llwyddiant" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Dolen" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Rhybudd" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Peryg" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Adroddiad awtomatig" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Ar ddod" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Hunan dileu" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Ataliad cymedrolwr" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Dileu cymedrolwr" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Parth wedi ei rwystro" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Llyfr sain" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "eLyfr" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Nofel graffig" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Clawr caled" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Clawr meddal" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Adolygiadau" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Ffedereiddwyd" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Wedi'i rwystro" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s ddim yn remote_id dilys" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s ddim yn enw defnyddiwr dilys" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "enw defnyddiwr" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Defnyddiwr gyda'r enw defnyddiwr hwn eisoes yn bodoli." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Cyhoeddus" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Heb ei restru" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Dilynwr" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Preifat" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Gwall llwytho llyfr" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Methu dod o hyd i pariad ar gyfer llyfr" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Yn rhad ac am ddim" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Prynadwy" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Ar gael i'w fenthyg" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Cymmeradwy" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Adolygiadau" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Sylwadau" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Dyfyniadau" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Popeth arall" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Ffrwd gartref" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Cartref" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Ffrwd lyfrau" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Llyfrau" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "Saesneg" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (Almaeneg)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (Sbaeneg)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (Galiseg)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (Eidaleg)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomoi (Finneg)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (Ffrangeg)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (Lithwaneg)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (Norwyaidd)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (Portiwgaleg Brasil)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (Portiwgaleg Ewropeaidd)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (Rwmaneg)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (Swedeg)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (Tsieinëeg Syml)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (Tsieinëeg Traddodiadol)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Heb ei ddarganfod" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Nid yw'r dudalen y gwnaethoch chi ofyn amdani yn bodoli!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Wps!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Gwall Gweinydd" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Aeth rhywbeth o'i le! Sori am hynny." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Amdano" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Croeso i %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)syw %(site_name)s llyfr mwyaf annwyl, gyda sgôr gyfartalog o %(rating)s allan o 5." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "Mae mwy o ddefnyddwyr %(site_name)s eisiau darllen %(title)s nag unrhyw lyfr arall." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "Mae gan %(title)s y gwerthusiadau mwyaf ymrannol o unrhyw lyfr ar %(site_name)s." + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Traciwch eich darlleniad, siaradwch am lyfrau, ysgrifennwch adolygiadau, a darganfyddwch beth i'w ddarllen nesaf. Bob amser yn ddi-hysbyseb, yn wrth-gorfforaethol, ac yn canolbwyntio ar y gymuned, mae BookWyrm yn feddalwedd ar raddfa ddynol, wedi'i gynllunio i aros yn fach ac yn bersonol. Os oes gennych chi geisiadau nodwedd, adroddiadau nam, neu freuddwydion mawr, estyn allan a gwneud i chi'ch hun glywed." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Cwrdd â'r gweinyddwyr" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "Mae gweinyddwyr a chymedrolwyr yn cadw safle %(site_name)s i fynd, yn goruwchwylio'r côd ymddygiad, ac yn ymateb pan fo defnyddwyr yn adrodd am sbam ac ymddygiad gwrth-gymdeithasol." + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Cymedrolwr" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Gweinyddwr" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Anfonwch neges uniongyrchol" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Côd Ymddygiad" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Defnyddwyr cyfredol:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Nifer y statwsys wedi'u postio:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Fersiwn y feddalwedd:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "Am %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Polisi Preifatrwydd" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s yn y llyfrau" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s yn y llyfrau" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "%(display_name)s blwyddyn wedi'i ddarllen" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Rhannwch y dudalen" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Copïo cyfeiriad" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Wedi'i gopïo!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "Yn rhannu statws: cyhoeddus gydag allwedd" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Fe all rhywun gyda'r cyfeiriad llawn weld y dudalen." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Gwnewch y dudalen yn breifat" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Yn rhannu statws: preifat" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Mae'r dudalen hon yn breifat, chi yn unig sy'n ei gweld." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Gwnewch y dudalen yn gyhoeddus" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "Pan fyddwch yn gwneud eich tudalen yn breifat, ni fydd yr hen allwedd yn rhoi mynediad i'r dudalen. Creir allwedd newydd os bydd y dudalen yn gyhoeddus yn y dyfodol." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Yn anffodus ni orffennodd %(display_name)s yr un llyfr yn %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "Yn %(year)s fe wnaeth %(display_name)s ddarllen %(books_total)s o lyfrau
    am gyfanswm o %(pages_total)s dudalennau!" +msgstr[1] "Yn %(year)s fe wnaeth %(display_name)s ddarllen %(books_total)s o lyfrau
    am gyfanswm o %(pages_total)s dudalennau!" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "Gwych!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "Dyna %(pages)s o dudalennau fesul llyfr ar gyfartaledd." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "Eu llyfr byrraf eleni…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "gan" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s tudalennau" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "... a'r hiraf" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "Fe wnaeth %(display_name)s osod amcan o ddarllen %(goal)s o lyfrau yn %(year)s,
    a wedi llwyddo i gyrraedd %(goal_percent)s o'r nod" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "Ffordd i fynd!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "Fe adawodd %(display_name)s %(ratings_total)swerthusiad,
    mae ei (g)werthusiad cyfartal yw %(rating_average)s" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "Eu hadolygiad sydd â'r sgôr orau" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "Eu gwerthusiad nhw: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "Pob llyfr %(display_name)s wedi'i ddarllen yn %(year)s" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Golygu Awdur" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Manylion awdur" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Arallenwau:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Ganwyd:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Bu farw:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Dolenni allanol" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Wicipedia" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Gwelwch y cofnod ISNI" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Llwythwch y data" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "Gwelwch ar OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Gweld ar Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "Gweld ar LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Gweld ar Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Llyfrau gan %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Golygu Awdur:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Wedi'i ychwanegu:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Wedi'i ddiweddaru:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Golygwyd diwethaf gan:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Metadata" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Enw:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Rhifau lluosol gwahanol gyda chomas." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Bywgraffiad:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Dolen Wicipedia:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Dyddiad geni:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Dyddiad marwolaeth:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Manylion yr Awdur" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Allwedd Openlibrary:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "ID Inventaire:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Allwedd Librarything:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Allwedd Goodreads:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Cadw" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Canslo" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "Cysylltir data a lwythir at %(source_name)s a bydd yn gwirio metadata eraill am yr awdur hwn. Ni fydd yn ysgrifennu dros fetadata presennol." + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Cadarnhau" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "Methu â chysylltu â'r rhwydwaith." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Golygu'r Llyfr" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Cliciwch i ychwanegu clawr" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Methwyd â llwytho clawr" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Cliciwch i ehangu" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "(adolygiadau %(review_count)s)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Ychwanegu disgrifiad" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Disgrifiad:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "Argraffiadau %(count)s" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Rydych wedi rhoi'r fersiwn yma ar silff:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "Mae fersiwn wahanolo'r llyfr hwn ar eich %(shelf_name)ssilff." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Eich darllen" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Ychwanegu dyddiadau darllen" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "Does gennych ddim cofnod darllen ar gyfer y llyfr hwn." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Eich adolygiadau" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Eich sylwadau" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Eich dyfyniadau" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Pynciau" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Lleoedd" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Rhestrau" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Ychwanegu i'r rhestr" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Ychwanegu" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "Rhif OCLC:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Ychwanegu clawr" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Lanlwythwch y clawr:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Cip o'r clawr" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Cau" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Golygwch %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Ychwanegwch Lyfr" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Cadarnhewch Wybodaeth y Llyfr" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "Ai %(name)s yw un o'r awduron?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Awdur o %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "Awdur o %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Darganfyddwch rhagor yn isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Awdur newydd yw hwn" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Yn creu awdur newydd: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Ai fersiwn o waith sy'n bodoli eisoes ydyw?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Llyfr newydd yw hwn" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Yn ôl" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Teitl:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Is-deitl:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Cyfres:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Rhif y cyfres:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Iaith:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Pynciau:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Ychwanegu pwnc" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Tynnu pwnc" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Ychwanegu Pwnc Arall" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Cyhoeddiad" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Cyhoeddwr:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Dyddiad y cyhoeddiad cyntaf:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Dyddiad Cyhoeddi:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Awduron" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Tynnwch %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Awdur tudalen %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Ychwanegwch awduron:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Ychwanegwch awdur" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Sian ap Sion" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Ychwanegwch Awdur Arall" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Clawr" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Priodweddau" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Fformat:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Fformatio'r manylion:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Tudalennau:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Manylion y Llyfr" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Openlibrary ID:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Fersiwn %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Methu â dod o hyd i'r argraffiad perthnasol?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Ychwanegu argraffiad arall" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "Unrhyw rai" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Iaith:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Porwch y fersiynau" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Ychwanegwch ddolen y ffeil" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "Bydd angen i ddolenni o barthau anhysbys gael eu cymeradwyo gan gymdedrolwr cyn iddynt gael eu hychwanegu." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Math o ffeil:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Ar gael:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Golygu dolenni" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Dolenni am \"%(title)s\"" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Wedi'i ychwanegu gan" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Math o ffeil" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Parth" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Statws" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Gweithredoedd" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Defnyddiwr anhysbys" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Adrodd fel sbam" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Dim dolen ar gael ar gyfer y llyfr hwn." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Ychwanegu dolen i'r ffeil" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Dolenni Ffeil" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "Cael copi" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Dim dolenni ar gael" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "Yn gadael BookWyrm" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "Mae'r ddolen hon yn eich arwain at: %(link_url)s.
    Ai dyna yw eich dymuniad?" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Parhau" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s,%(pages)s tudalennau" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s tudalennau" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s iaith" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Cyhoeddir %(date)s gan %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Cyhoeddwyd gan %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Dyddiad Cyhoeddi: %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "graddio fe" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "Bydd llwytho data yn cysylltu â %(source_name)s ac yn gwirio am unrhyw fetadata am y llyfr hwn nad yw'n bresennol yma. Ni fydd metadata presennol yn cael ei drosysgrifo." + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Golygu statws" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Cadarnhau e-bost" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Cadarnhau cyfeiriad e-bost" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Mae côd cadarnhau wedi'i anfon i'r cyfeiriad e-bost a ddefnyddiwyd gennych i gofrestru'ch cyfrif." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Mae'n ddrwg gennym, ni allem ddod o hyd i'r côd honno." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Côd cadarnhau:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Cyflwyno" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Methu dod o hyd i'ch côd?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Ail-anfon dolen cadarnhau" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "Cyfeiriad e-bost:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Ail-anfon dolen" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Cymdeithas" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Defnyddwyr lleol" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Cymuned ffedereidiwyd" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Cyfeiriadur" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Gwnewch eich proffil yn ddarganfyddadwy i ddefnyddwyr BookWyrm eraill." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Ymuno a Cyfeiriadur" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Gallwch optio allan unrhyw bryd yn eich gosodiadau proffil." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Diystyru'r neges" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Trefnu gan" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Yn weithgar yn ddiweddar" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Awgrymwyd" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Cyfrif wedi'i gloi" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "dilynwyr rydych chi'n eu dilyn" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "llyfrau ar eich silffoedd" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "postiau" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "tro diwethaf arlein" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Math o ddefnyddiwr" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "Defnyddwyr BookWyrm" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "Pob defnyddiwr" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "Mae %(username)seisiau darllen%(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "Mae %(username)s wedi gorffen darllen %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "Mae %(username)s wedi dechrau darllen %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "Mae %(username)s wedi gwerthuso%(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "Mae %(username)s wedi adolygu %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "Mae %(username)s wedi rhoi sylw ar %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "Mae %(username)s wedi dyfynnu %(book_title)s" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "Darganfyddwch" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "Gwelwch yr hyn sy'n newydd yn y gymuned %(site_name)s" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Gwelwch statws" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "Un cam olaf cyn i chi ymuno â %(site_name)s! Cadarnhewch eich cyfeiriad ebost wrth glicio ar y ddolen isod:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Cadarnhau e-bost" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Neu teipiwch y côd %(confirmation_code)s wrth fewngofnodi." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "Cadarnhewch eich ebost" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Neu teipiwch y côd %(confirmation_code)s wrth fewngofnodi." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Shwmae!" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "Dymuniadau ebost" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "Dyma wahoddiad i chi ymuno â %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Ymunwch Nawr" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "Dyma wahoddiad i chi ymuno â %(site_name)s! Cliciwch y ddolen isod i greu'ch cyfrif." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "Dysgwch rhagor am %(site_name)s:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "Mae @%(reporter)s wedi fflagio parth cyswllt i'w gymedroli." + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "Mae @%(reporter)s wedi nodi ymddygiad i'w cymedroli gan @%(reportee)s." + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "Gweld adroddiad" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "Adroddiad newydd am %(site_name)s" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "Fe ofynnoch i newid eich cyfrinair %(site_name)s. Cliciwch ar y ddolen isod i newid eich cyfrinair a mewngofnodi i'ch cyfrif." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Newidiwch eich Cyfrinair" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Os na ofynnoch i newid eich cyfrinair, anwybyddwch yr ebost yma." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Newidiwch eich cyfrinair %(site_name)s" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "Tudalen gartref %(site_name)s" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Cysylltwch â gweinyddwr y safle" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "Ymunwch â Bookwyrm" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "Negeseuon Preifat â %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "Negeseuon preifat" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Pob neges" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Does dim negeseuon gyda chi." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Does dim gweithgareddau! Dilynwch ddefnyddiwr i gychwyn arni" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "Neu, ceisiwch wireddu rhagor o fathau o statws" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "Amcan Darllen %(year)s" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Fe allwch osod neu newid eich amcan darllen unrhyw bryd o'ch tudalen proffil " + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Diweddariadau" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Eich Llyfrau" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Does dim llyfrau fan hyn eto! Chwiliwch am lyfr i gychwyn arni" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "Oes gennych chi ddata llyfrau o wasanaeth arall fel GoodReads?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Mewnforio eich hanes darllen" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Awgrymiadau dilyn" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Paid ag argymell defnyddwyr i'w dilyn" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Cip ar y cofnod" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "Diwedd y flwyddyn yw'r adeg orau i ystyried yr holl lyfrau a ddarllenoch dros y 12 mis diwethaf. Sawl tudalen ydych wedi eu darllen? Pa lyfr gafodd y clod mwyaf ganddoch? Rydym wedi dadansoddi'r ystadegau hyn, a mwy!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "Darganfod eich ystadegau dros %(year)s!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "Ydych chi wedi darllen %(book_title)s?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Ychwanegu at eich llyfrau" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "I'w Ddarllen" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Yn darllen ar hyn o bryd" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Wedi'i ddarllen" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Wedi stopio darllen" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Beth ydych chi'n darllen?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Chwilio am lyfr" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "Dim llyfrau am \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Gallwch ychwanegu llyfrau pan fyddwch yn defnyddio %(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Chwilio" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Awgrymiadau" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Yn boblogaidd ar %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Dim llyfrau i'w canfod" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Cadw & parhau" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Croeso" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Dyma'r camau cyntaf i'ch helpu ar hyd y lôn." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Creuwch eich proffil" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Ychwanegu llyfrau" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Chwilio am ffrindiau" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Sgipio'r cam yma" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Gorffen" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Enw:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Crynodeb:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Tamaid amdanoch chi" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Avatar:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Cadarnhau dilynwyr eich hun:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Dangos y cyfrif hwn yn argymhelliadau defnyddwyr:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Dangosir eich cyfrif yn y gofrestr, ac o bosib y caiff ei argymell i ddefnyddwyr eraill BookWyrm." + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Chwilio am ddefnyddiwr" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "Dim defnyddwyr am \"%(query)s\"" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "Creu grŵp" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "Wedi'i rheoli gan %(username)s" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Dileu'r grŵp hwn?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Ni fydd yn bosib dadwneud hyn!" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Dileu" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Golygu'r grŵp" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Enw'r grŵp:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Disgrifiad y Grŵp:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Dileu'r grŵp" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Gall aelodau'r grŵp hwn greu rhestrau i'r grŵp ei hun." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Creu Rhestr" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "Does dim rhestrau â'r grŵp hwn" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Golygu'r grŵp" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "Chwilio i ychwanegu defnyddiwr" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Gadael y grŵp" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "Yn eich dilyn chi" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "Ychwanegwch aelodau newydd!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "%(mutuals)s dilynwyr mi ydych yn eu dilyn" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "%(shared_books)s llyfrau ar eich silffoedd" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "Dim aelodau i'w canfod am %(user_query)s" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Rheolwr" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "Ffynhonnell y data:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "Ffeil y data:" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "Cynnwys adolygiadau" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "Mewnforiwch" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "Mewnforiadau diweddar" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "Dim mewnforiadau diweddar" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "Statws Mewnforio" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "Ailgeisio Statws" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "Mewnforiadau" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "Dechreuwyd y mewnforio:" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "Ar waith" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "\"Cysoni\"" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "Mae angen cymeradwyaeth %(display_counter)s gan unigolyn." + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "Adolygwch eitemau" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "Methwyd â mewnforio %(display_counter)s." + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "Porwch a thrwsio eitemau a fethwyd" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "Rhes" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "Teitl" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "ISBN" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "Allwedd Openlibrary" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "Awdur" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "Silff" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "Llyfr" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "Cip o'r mewnforiad ddim ar gael." + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "Edrych ar adolygiad wedi'i fewnforio" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "Wedi'i fewnforio" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "Angen adolygiad gan berson" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "Ceisio eto" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "Mae'r ffeil yma mewn hen fformat nas ddefnyddir bellach. Os hoffech drwsio eitemau ar goll o'r ffeil, cliciwch y botwm islaw i ddiweddaru'r fformat." + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "Diweddaru'r ffeil" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "Trwsio'r ffeil" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "Os byddwch yn cytuno ag argymhelliad, ychwanegir y llyfr yna at eich silffoedd yn ogystal â holl ddyddiadau darllen, adolygiadau a gwerthusiadau cysylltiedig." + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "Cymeradwyo" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "Gwrthod" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "Eitemau a fethodd" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "Datrys problemau" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "Mae ail-geisio mewnforio yn gallu trwsio eitemau ar goll mewn achosion:" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "Mae'r llyfr wedi'i ychwanegu at y parth yma ers i'w fewnforio" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "Fe achosodd gwall dros dro neu gormodiaeth amser i'r ffynhonell ddata allanol ddarfod." + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "Mae BookWyrm wedi'i ddiweddaru (â thrwsio bygs) ers mewnforio'r llyfr yma" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "Gwaredu" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "Dileu'r rhestr?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "Golygu rhestr" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "%(list_name)s, rhestr gan %(owner)s" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "Mae'r rhestr hon yn wag" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "Gofalu am y rhestr:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "Wedi cau" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "Chi yn unig all ychwanegu neu dynnu llyfrau o'r rhestr hon" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "O dan gofal rhywrai" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "Fe all rhwyun argymell lyfrau, gyda'ch caniatâd" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "Agor" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "Gall rywun ychwanegu llyfrau at y rhestr hon" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "Grŵp" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "Gall aelodau'r grŵp ychwanegu neu dynnu oddi ar y rhestr hon" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "Dewis grŵp" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "Dewis grŵp" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "Nid oes gennych unrhyw Grwpiau eto!" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "Creu grŵp" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "Dileu rhestr" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +msgid "Notes:" +msgstr "Nodiadau:" + +#: 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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "Mewnforio Llyfrau" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + diff --git a/locale/da_DK/LC_MESSAGES/django.mo b/locale/da_DK/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..73e6d88d55 Binary files /dev/null and b/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/locale/da_DK/LC_MESSAGES/django.po b/locale/da_DK/LC_MESSAGES/django.po new file mode 100644 index 0000000000..cdb4621ff0 --- /dev/null +++ b/locale/da_DK/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Danish\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: da\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Én dag" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "En uge" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "En måned" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Udløber Ikke" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Ubegrænset" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Forkert adgangskode" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Adgangskode stemmer ikke overens" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Forkert adgangskode" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Datoen, hvor læsningen blev gennemført, kan ikke være før startdatoen." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Datoen, hvor læsningen stoppede, kan ikke være før startdatoen." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Datoen, hvor læsningen stoppede, kan ikke være i fremtiden." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Datoen, hvor læsningen blev færdiggjort, kan ikke være i fremtiden." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Brugernavn eller adgangskode er forkert" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Der findes allerede en bruger med det brugernavn" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Der findes allerede en bruger med den e-mailadresse." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Forkert kode" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Domænet er blokeret. Kontakt venligst din administrator, hvis du mener, at det er en fejl." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Det link med den filtype er allerede blevet tilføjet for denne bog. Hvis det ikke er synligt, afventer domænet stadig." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Listesortering" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Bogtitel" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Bedømmelse" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Sortér efter" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Stigende" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Faldende" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Primær" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Fuldført" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Link" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Advarsel" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Fare" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Automatisk genereret rapport" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Afventende" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Selvsletning" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "Selvdeaktivering" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Suspenderet af moderator" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Slettet af moderator" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Domæneblokering" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Lydbog" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "e-bog" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Grafisk roman" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Hardcover" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Paperback" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Kommentér" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Fødereret" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Blokeret" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s er ikke en gyldig remote_id" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s er ikke et gyldigt brugernavn" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "brugernavn" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Der findes allerede en bruger med det brugernavn." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Offentlig" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Ikke oplistet" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Følgere" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Privat" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "Aktiv" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Gennemført" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Stoppet" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Import stoppet" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Fejl under indlæsning af bog" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Kunne ikke finde et match til bogen" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Gratis" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Kan købes" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Mulig at låne" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Godkendt" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "Løst rapport" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "Genåbnet rapport" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "Besked sendt til anmelder" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "Besked sendt til anmeldt bruger" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "Suspenderet bruger" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "Ikke-suspenderet bruger" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "Brugertilladelsesniveau ændret" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "Brugerkonto slettet" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "Blokeret domæne" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "Godkendt domæne" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "Slettet genstand" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "%(display_name)ss status" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)ss kommentar på %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Anmeldelser" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Kommentarer" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Citater" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Alt det andet" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Hjem-tidslinje" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Hjem" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Bøger-tidslinje" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Bøger" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "Engelsk" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (catalansk)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (tysk)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (Esperanto)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (spansk)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (Baskisk)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (galicisk)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (italiensk)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (finsk)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (fransk)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (litauisk)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Nederlands (hollandsk)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (norsk)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (polsk)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (brasiliansk portugisisk)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (europæisk portugisisk)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (rumænsk)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (svensk)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "Українська (ukrainsk)" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (forenklet kinesisk)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (traditionelt kinesisk)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "Åh nej!" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "Du har ikke tilladelse til at se denne side eller udføre denne handling. Dit brugertilladelsesniveau er %(level)s." + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "Hvis du mener, at du burde have adgang, bedes du tale med din BookWyrm-server-administrator." + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Ikke fundet" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Den ønskede side eksisterer vist ikke!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "Filen er for stor" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "Filen som du uploader er for stor." + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Ups!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Serverfejl" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Beklager! Noget gik galt." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Om" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Velkommen til %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s er en del af BookWyrm – et netværk af uafhængige, selvstyrende fællesskaber for læsere. Samtidig med, at du kan interagere problemfrit med brugere overalt i BookWyrm-netværket, er dette fællesskab helt unikt." + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)s er %(site_name)ss mest elskede bog, med en gennemsnitlig bedømmelse på %(rating)s ud af 5." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "%(title)s er den bog, som flest %(site_name)s-brugere ønsker at læse." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "%(title)s har de mest delte bedømmelser af nogen bog på %(site_name)s." + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Hold styr på din læsning, tal om bøger, skriv anmeldelser, og find ud af, hvad du skal læse som det næste. BookWyrm er altid reklamefri, ikkecommerciel og fællesskabsorienteret software i øjenhøjde, som er designet til at forblive et lille og personligt fællesskab. Hvis du har funktionsanmodninger, fejlrapporter, eller store drømme, så tag kontakt og lad os høre dine forslag." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Mød dine administratorer" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "%(site_name)s's moderatorer og administratorer holder siden kørende, håndhæver ordensreglerne, og reagerer, når brugerne rapporterer spam og dårlig adfærd." + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Moderator" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Administrator" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Send direkte besked" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Ordensregler" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "Kolofon" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Aktive brugere:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Statusser publiceret:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Softwareversion:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "Om %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Privatlivspolitik" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s i bøger" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s i bøger" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "%(display_name)ss læseår" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Del denne side" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Kopiér adresse" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Kopieret!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "Deler status: offentlig med nøgle" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Siden kan ses af enhver med den komplette adresse." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Gør siden privat" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Deler status: privat" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Siden er privat – det er kun dig, der kan se den." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Gør siden offentlig" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "Når du gør din side privat, vil den gamle nøgle ikke give adgang til siden længere. En ny nøgle vil blive oprettet, hvis siden igen gøres offentlig." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Desværre færdiggjorde %(display_name)s ikke nogen bøger i %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "I %(year)s har %(display_name)s læst %(books_total)s bog,
    som udgør i alt %(pages_total)s sider!" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "Det er fantastisk!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "Det giver et gennemsnit på %(pages)s sider pr. bog." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "(Der var ingen tilgængelige sidedata for %(no_page_number)s bog)" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "Vedkommendes korteste læsning i år…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "af" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s sider" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "…og den længste" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "%(display_name)s har sat sig som mål at læse %(goal)s bøger i %(year)s,
    og fuldførte %(goal_percent)s%% af det mål" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "Godt gået!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "%(display_name)s lavede %(ratings_total)s bedømmelse
    med en gennemsnitlig bedømmelse på %(rating_average)s" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "Vedkommendes bedst bedømte anmeldelse" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "Deres bedømmelse: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "Alle bøger, som %(display_name)s har læst i %(year)s" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Rediger forfatter" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Forfatteroplysninger" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Kaldenavne:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Født:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Død:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Eksterne links" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Wikipedia" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "Hjemmeside" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Se ISNI-optegnelse" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "Se på ISFDB" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Indlæs data" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "Se på OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Se på Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "Se på LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Se på Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Bøger af %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Rediger forfatter:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Tilføjet:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Opdateret:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Senest redigeret af:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Metadata" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Navn:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Adskil flere værdier med kommaer." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Biografi:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Wikipedia-link:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "Hjemmeside:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Fødselsdato:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Dødsdato:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Forfatterkendetegn" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Openlibrary-nøgle:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "Inventaire-ID:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Librarything-nøgle:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Goodreads-nøgle:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "ISFDB:" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Gem" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Annuller" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "Indlæsning af data vil forbinde til %(source_name)s og tjekke efter metadata om denne forfatter, som ikke er til stede her. Eksisterende metadata vil ikke blive overskrevet." + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Bekræft" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "Kan ikke forbinde til ekstern kilde." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Rediger bog" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Klik for at tilføje omslag" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Kunne ikke indlæse omslag" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Klik for at forstørre" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s anmeldelse)" +msgstr[1] "(%(review_count)s anmeldelser)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Tilføj beskrivelse" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Beskrivelse:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s udgave" +msgstr[1] "%(count)s udgaver" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Du har tilføjet denne udgave til hylden:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "En anden udgave af denne bog er på din %(shelf_name)s hylde." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Din læseaktivitet" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Tilføj læste datoer" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "Du har ikke nogen læseaktivitet for denne bog." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Dine anmeldelser" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Dine kommentarer" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Dine citater" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Emner" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Steder" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Lister" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Tilføj til liste" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Tilføj" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "Kopier ISBN" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBN kopieret!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLC nummer:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "Audible ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "ISFDB ID:" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Tilføj omslag" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Upload omslag:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "Indlæs omslag fra URL:" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Forhåndsvisning af bogomslag" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Luk" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Redigér \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Tilføj bog" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "Kunne ikke gemme bogen, se fejl nedenfor for mere information." + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Bekræft information om bog" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "Er \"%(name)s\" en af disse forfattere?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Forfatter af %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "Forfatter af %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Find mere information på isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Dette er en ny forfatter" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Opretter en ny forfatter: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Er dette en udgave af et eksisterende værk?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Dette er et nyt værk" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Tilbage" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Titel:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "Sorteringstitel:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Undertitel:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Serie:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Nummer i serie:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Sprog:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Emner:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Tilføj emne" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Fjern emne" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Tilføj endnu et emne" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Udgivelse" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Forlag:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Dato for første udgivelse:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Udgivelsesdato:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Forfattere" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Fjern %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Forfatterside for %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Tilføj forfattere:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Tilføj forfatter" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Ukendt Navn" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Tilføj en forfatter mere" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Forside" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Fysiske egenskaber" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Format:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Formatdetaljer:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Sider:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Bogidentifikatorer" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Openlibrary ID:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Udgaver af %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "Udgaver af %(work_title)s" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Kan du ikke finde den udgave du leder efter?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Tilføj en anden udgave" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Sprog:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Søg i udgaver" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Tilføj fil-link" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "Links fra ukendte domæner skal godkendes af en moderator, før de tilføjes." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Filtype:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Tilgængelighed:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Rediger links" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Links for \"%(title)s\"" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Tilføjet af" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Filtype" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Domæne" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Status" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Handlinger" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Ukendt bruger" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Anmeld spam" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Ingen links tilgængelige for denne bog." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Tilføj link til fil" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Fil links" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Ingen tilgængeilge links" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "Dette link fører dig til: %(link_url)s.
    Er det hvor du gerne vil hen?" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Forsæt" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s sider" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s sider" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s sprog" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Udgivet %(date)s af %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Udgivet %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Udgivet %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "gav den" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "Bog %(series_number)s" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "Usorteret Bog" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Rediger status" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Bekræft e-mail" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Bekræft din e-mailadresse" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "En bekræftelseskode er blevet sendt til den e-mail-adresse, du brugte til at registrere din konto." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Beklager! Vi kunne ikke finde koden." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Bekræftelseskode:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Send" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Kan du ikke finde din kode?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Gensend bekræftelseslink" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "E-mailadresse:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Gensend link" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Fællesskab" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Lokale brugere" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Fødereret fællesskab" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Gør din profil synlig for andre BookWyrm brugere." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Du kan til enhver tid ændre mening i dine profilindstillinger" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Luk besked" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Sortér efter" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Aktiv for nylig" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Foreslået" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Låst konto" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "følger du følger" +msgstr[1] "følgere du følger" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "bog på dine hylder" +msgstr[1] "bøger på dine hylder" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "indlæg" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "sidst aktiv" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Brugertype" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "BookWyrm brugere" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "%(username)s bedømte %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Du har ingen beskeder lige nu." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Der er ingen aktiviteter lige nu! Prøv at følge en bruger for at komme i gang" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "Du kan også prøve at aktivere flere statustyper" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "Læsemål for %(year)s" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Du kan til enhver tid indstille eller ændre dit læsemål fra din profilside" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Opdateringer" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Dine Bøger" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Der er ingen bøger her lige nu! Prøv at søge efter en bog for at komme i gang" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "Har du bogdata fra en anden tjeneste såsom GoodReads?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Importer din læsehistorik" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Forslag til hvem du kan følge" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Vis ikke forslag om brugere" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "Slutningen af året er det bedste tidspunkt at gøre status over alle de bøger du har læst i løbet af de sidste 12 måneder. Hvor mange sider har du læst? Hvad er årets bedste bog? Vi har her samlet disse information + meget mere!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "Har du læst %(book_title)s?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Tilføj til dine bøger" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "Vil Læse" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Læser i øjeblikket" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Har læst" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Ikke Læst Færdig" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Hvad læser du?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Søg efter en bog" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "Ingen bøger fundet for \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Du kan tilføje bøger, når du begynder at bruge %(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Søg" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Forslag Til Bøger" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "Søgeresultater" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Populær på %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Ingen bøger fundet" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Gem & fortsæt" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Velkommen" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "Du kan følge brugere på andre BookWyrm servere og fødererede tjenester som fx Mastodon." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Medlemmer af denne gruppe kan oprette gruppe-kuraterede lister." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "Ingen grupper fundet." + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "Du kan skrive en anmeldelse, en kommentar eller et citat her." + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "Skriv en kommentar" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "Velkommen til siden for din gruppe! Her kan du tilføje og fjerne brugere, oprette bruger-kuraterede lister, og redigere gruppedetaljerne." + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "Ud over at oprette lister fra Lister siden, kan du oprette en gruppe-kurateret liste her på gruppens hjemmeside. Ethvert medlem af gruppen kan oprette en liste kurateret af gruppemedlemmer." + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "Du kan også bestemme, hvordan din liste skal kurateres - kun af dig, af hvem som helst eller af en gruppe." + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "Du kan oprette eller deltage i en gruppe med andre brugere. Grupper kan dele gruppe-kuraterede boglister, og vil i fremtiden kunne gøre andre ting." + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "Her kan du se dine grupper, eller oprette en ny. En gruppe samler Bookwyrm-brugere og tillader dem at kuratere lister sammen." + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "Du har %(display_left)s tilbage." + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "Hvis du ønsker at migrere statusser (kommentarer, anmeldelser eller citater) skal du enten angive denne konto som et alias for den, du migrerer fra, eller flytte den konto til denne, før du importerer dine brugerdata." + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "Vælg en eksportfil genereret fra en anden BookWyrm-konto. Filformatet skal være .tar.gz." + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "Oprettet og kurateret af %(username)s" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "Kurateret" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "Ingen lister fundet." + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s foreslog at tilføje %(book_title)s til din liste \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s foreslog at tilføje %(book_title)s og %(second_book_title)s til din liste \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "%(related_user)s foreslog at tilføje %(book_title)s, %(second_book_title)s, og %(display_count)s anden bog til din liste \"%(list_name)s\"" +msgstr[1] "%(related_user)s foreslog at tilføje %(book_title)s, %(second_book_title)s, og %(display_count)s andre bøger til din liste \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "Ønsker du at indstille hvem der kan se dine hylder? Du kan indstille synligheden for hver af dine hylder. Gå til Dine bøger, vælg en hylde fra fanebjælken, og klik på \"Rediger hylde.\"" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "Du kan oprette en eksportfil her. Dette giver dig mulighed for at overføre dine data til en anden BookWyrm-konto." + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "Hvis du ønsker at migrere statusser (kommentarer, anmeldelser eller citater) skal du enten angive kontoen du vil flytte til som et alias for den, du migrerer fra, eller flytte den konto til denne, før du importerer dine brugerdata." + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "Overflyt konto til en anden server" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Du kan generere sikkerhedskoder til brug, hvis du ikke har adgang til din godkendelsesapp. Hvis du genererer nye koder, vil eventuelle tidligere genererede sikkerhedskoder ikke længere virke." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Generer sikkerhedskoder" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "Indbakke" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "Forbindelser" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "Foreslåede brugere" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "Diverse" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Fødererede servere" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Opdater" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "Generer Ny Invitation" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "Moderationsaktivitet" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "%(user)s åbnede denne rapport" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "%(user)s kommenterede på denne rapport:" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "%(user)s foretog en handling på denne rapport:" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "Godkend domæne" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "Bedøm" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "Anmeldelser og kommentarer" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "Ingen anmeldelser eller kommentarer endnu!" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "%(display_count)s følgere" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo index 4ce83f72b3..34cbc4f5bd 100644 Binary files a/locale/de_DE/LC_MESSAGES/django.mo and b/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po index a2f088210e..59fd11fb86 100644 --- a/locale/de_DE/LC_MESSAGES/django.po +++ b/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-16 02:19\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" "Last-Translator: Mouse Reeve \n" "Language-Team: German\n" "Language: de\n" @@ -33,56 +33,55 @@ msgstr "Ein Monat" msgid "Does Not Expire" msgstr "Läuft nicht ab" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i}-mal verwendbar" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Unbegrenzt" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Falsches Passwort" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Passwort stimmt nicht überein" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Falsches Passwort" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Enddatum darf nicht vor dem Startdatum liegen." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Das Datum für \"Lesen gestoppt\" kann nicht vor dem Lesestart sein." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Das Datum für \"Lesen gestoppt\" kann nicht in der Zukunft sein." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Das Datum \"Lesen beendet\" kann nicht in der Zukunft liegen." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Benutzer*inname oder Passwort falsch" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Ein Benutzer mit diesem Benutzernamen existiert bereits" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Es existiert bereits ein Benutzer*inkonto mit dieser E-Mail-Adresse." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Diese E-Mail-Adresse kann nicht registriert werden." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Falscher Code" @@ -90,7 +89,7 @@ msgstr "Falscher Code" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Diese Domain ist blockiert. Bitte kontaktiere einen Administrator, wenn du denkst, dass dies ein Fehler ist." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Dieser Link mit dem Dateityp wurde bereits für dieses Buch hinzugefügt. Falls es nicht sichtbar ist, befindet sich die Domain noch in der Freischaltung." @@ -102,8 +101,8 @@ msgstr "Reihenfolge der Liste" msgid "Book Title" msgstr "Buchtitel" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Bewertung" @@ -145,8 +144,8 @@ msgstr "Gefahr" msgid "Automatically generated report" msgstr "Automatisch generierter Bericht" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -166,39 +165,107 @@ msgstr "Moderator*in suspendieren" #: bookwyrm/models/base_model.py:22 msgid "Moderator deletion" -msgstr "Moderator*in löschen" +msgstr "Löschung durch Moderator*in" #: bookwyrm/models/base_model.py:23 msgid "Domain block" msgstr "Domainsperrung" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Hörbuch" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "E-Book" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Graphic Novel" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Hardcover" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Taschenbuch" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s sieht nicht wie eine ISBN aus" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s hat keine korrekte ISBN-Prüfsumme, wir erwarteten %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Kommentieren" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Besprechen" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Zitat" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Folgen" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blockieren" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "nicht autorisiert" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "Verbindungsfehler" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "Nicht erlaubte Verbindung" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Föderiert" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s ist keine gültige remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s ist kein gültiger Benutzer*inname" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "Benutzer*inname" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Dieser Benutzer*inname ist bereits vergeben." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Dieser Benutzer*inname ist bereits vergeben." msgid "Public" msgstr "Öffentlich" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Öffentlich" msgid "Unlisted" msgstr "Ungelistet" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Ungelistet" msgid "Followers" msgstr "Follower*innen" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Follower*innen" msgid "Private" msgstr "Privat" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktiv" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Abgeschlossen" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Gestoppt" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Import gestoppt" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Fehler beim Laden des Buches" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Keine Übereinstimmung für das Buch gefunden" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Fehlgeschlagen" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Kostenlos" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Käuflich erhältlich" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Zum Ausleihen erhältlich" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Bestätigt" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Kommentieren" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Gelöste Meldung" @@ -333,7 +399,7 @@ msgstr "Meldungsautor benachrichtigt" #: bookwyrm/models/report.py:88 msgid "Messaged reported user" -msgstr "Gemeldeten Benutzer Benachrichtigt" +msgstr "Gemeldeten Benutzer benachrichtigt" #: bookwyrm/models/report.py:89 msgid "Suspended user" @@ -363,123 +429,159 @@ msgstr "Zugelassene Domain" msgid "Deleted item" msgstr "Gelöschter Eintrag" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "%(display_name)s Status" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s Kommentar zu %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s's Zitat aus %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s Rezension zu %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s bewertete %(book_title)s: %(display_rating).1f Stern" +msgstr[1] "%(display_name)s bewertete %(book_title)s: %(display_rating).1f Sterne" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Rezensionen" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Kommentare" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Zitate" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Alles andere" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Start-Zeitleiste" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Startseite" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Bücher-Timeline" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Bücher" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Englisch)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Katalanisch)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Spanisch)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Baskisch)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galizisch)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italienisch)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Koreanisch)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finnisch)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Französisch)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litauisch)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (Niederländisch)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norwegisch)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polnisch)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (brasilianisches Portugiesisch)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugiesisch)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Rumänisch)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Schwedisch)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (Ukrainisch)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (vereinfachtes Chinesisch)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinesisch, traditionell)" @@ -517,11 +619,8 @@ msgid "The file you are uploading is too large." msgstr "Die Datei, die du hochladen willst, ist zu groß." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr " Du kannst es mit einer kleineren Datei probieren oder deine(n) BookWyrm-Server-Administrator*in bitten, den Wert der Einstellung DATA_UPLOAD_MAX_MEMORY_SIZE zu erhöhen.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Du kannst es mit einer kleineren Datei probieren oder deine(n) BookWyrm-Server-Administrator*in bitten, den Wert der Einstellung DATA_UPLOAD_MAX_MEMORY_SIZE zu erhöhen." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -617,7 +716,7 @@ msgid "Statuses posted:" msgstr "Veröffentlichte Statusmeldungen:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Softwareversion:" @@ -727,7 +826,7 @@ msgstr "Das am schnellsten gelesene Buch dieses Jahr…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -807,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Auf Wikidata ansehen" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Webseite" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "ISNI-Datensatz anzeigen" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Auf ISFDB ansehen" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Lade Daten" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Auf OpenLibrary ansehen" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Auf Inventaire anzeigen" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Auf LibraryThing anzeigen" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Auf Goodreads ansehen" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Bücher von %(name)s" @@ -881,8 +984,8 @@ msgid "Name:" msgstr "Name:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Mehrere Werte durch Kommas getrennt eingeben." @@ -894,50 +997,54 @@ msgstr "Über mich:" msgid "Wikipedia link:" msgstr "Wikipedialink:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Webseite:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Geburtsdatum:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Todesdatum:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Autor*in-Identifikatoren" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary-Schlüssel:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire-ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything-Schlüssel:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads-Schlüssel:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -945,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -959,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Speichern" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -976,6 +1083,7 @@ msgstr "Speichern" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -993,100 +1101,104 @@ msgstr "Das Laden von Daten wird eine Verbindung zu %(source_name)sdifferent edition of this book is on your %(shelf_name)s shelf." msgstr "Eine andere Ausgabe dieses Buches befindet sich in deinem %(shelf_name)s Regal." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Deine Leseaktivität" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Lesedaten hinzufügen" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Du hast keine Leseaktivität für dieses Buch." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Deine Rezensionen" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Deine Kommentare" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Deine Zitate" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Themen" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Orte" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1094,18 +1206,18 @@ msgstr "Orte" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listen" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Zur Liste hinzufügen" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1128,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN kopiert!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC-Nummer:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna-ID:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Titelbild hinzufügen" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Titelbild hochladen:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Titelbild via URL herunterladen:" @@ -1235,7 +1357,7 @@ msgid "This is a new work" msgstr "Dies ist ein neues Werk." #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1288,125 +1410,129 @@ msgstr "Zurück" msgid "Title:" msgstr "Titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Sortieren nach Titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Untertitel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Nummer in der Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Sprachen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Themen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Thema hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Thema entfernen" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Weiteres Thema hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Veröffentlichung" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Verlag:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Erstveröffentlichungsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Veröffentlichungsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autor*innen" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "%(name)s entfernen" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Autor*inseite für %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Autor*innen hinzufügen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Autor*in hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Lisa Musterfrau" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Weitere*n Autor*in hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Cover" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Physikalische Eigenschaften" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Formatdetails:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Seiten:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Buch-Identifikatoren" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "OpenLibrary-ID:" @@ -1434,7 +1560,7 @@ msgid "Any" msgstr "Beliebig(e)" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Sprache:" @@ -1495,12 +1621,15 @@ msgid "Domain" msgstr "Domain" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1512,8 +1641,8 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1559,8 +1688,8 @@ msgstr "BookWyrm verlassen" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Dieser Link führt zu: %(link_url)s.
    Möchtest du dorthin wechseln?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Weiter" @@ -1616,7 +1745,19 @@ msgstr "Nicht einsortiertes Buch" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Das Laden von Daten wird eine Verbindung zu %(source_name)s aufbauen und überprüfen, ob Buch-Informationen vorliegen, die hier noch nicht bekannt sind. Bestehende Informationen werden nicht überschrieben." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Rezension bearbeiten" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Zitat bearbeiten" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Kommentar bearbeiten" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Status bearbeiten" @@ -1643,7 +1784,7 @@ msgstr "Bestätigungscode:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Absenden" @@ -1681,7 +1822,7 @@ msgstr "Lokale Benutzer*innen" #: bookwyrm/templates/directory/community_filter.html:12 #: bookwyrm/templates/settings/users/user_admin.html:33 msgid "Federated community" -msgstr "Föderierte Gemeinschaft" +msgstr "Föderierte Community" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 @@ -1725,12 +1866,12 @@ msgstr "Empfohlen" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1851,8 +1992,8 @@ msgstr "Hallo," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm wird auf %(site_name)s bereitgestellt." +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm wird auf %(site_name)s gehostet" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1870,8 +2011,8 @@ msgstr "Tritt jetzt bei" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Erfahre mehr über %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Mehr über %(site_name)s erfahren." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2047,19 +2188,19 @@ msgid "Add to your books" msgstr "Zu deinen Büchern hinzufügen" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Leseliste" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Liest gerade" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2068,7 +2209,7 @@ msgid "Read" msgstr "Gelesen" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Aufgehört zu lesen" @@ -2101,7 +2242,7 @@ msgstr "Du kannst Bücher hinzufügen, wenn du %(site_name)s benutzt." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Suche" @@ -2753,6 +2894,7 @@ msgstr "Du kannst eine Gruppe mit anderen Personen erstellen oder beitreten. Gru #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Gruppen" @@ -2867,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Du hast noch %(display_left)s übrig." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Im Durchschnitt haben die letzten Importe %(hours)s Stunden in Anspruch genommen." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Im Durchschnitt haben die letzten Importe %(minutes)s Minuten in Anspruch genommen." @@ -2897,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Du kannst deine Goodreads-Daten von der Import / Export-Seite deines Goodreads-Kontos downloaden." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Datei:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Besprechungen einschließen" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Datenschutzeinstellung für importierte Besprechungen:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Neue Regale erstellen, wenn sie nicht vorhanden sind" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Datenschutzeinstellung für importierte Bewertungen und Regale:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importieren" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Sie haben das Importlimit erreicht." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Importe sind vorübergehend deaktiviert; vielen Dank für deine Geduld." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Zuletzt importiert" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Erstellungsdatum" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Zuletzt aktualisiert" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Einträge" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Keine aktuellen Importe" @@ -2983,20 +3139,24 @@ msgid "Imports" msgstr "Importe" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Import gestartet:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "In Arbeit" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Aktualisieren" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Import stoppen" @@ -3013,6 +3173,7 @@ msgid "Review items" msgstr "Zu prüfende Elemente" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3020,6 +3181,7 @@ msgstr[0] "%(display_counter)s Element konnte nicht importiert werden." msgstr[1] "%(display_counter)s Elemente konnten nicht importiert werden." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Fehlgeschlagene Elemente anzeigen und bearbeiten" @@ -3028,12 +3190,14 @@ msgid "Row" msgstr "Zeile" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titel" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3042,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Openlibrary-Schlüssel" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor*in" @@ -3051,13 +3215,9 @@ msgstr "Autor*in" msgid "Shelf" msgstr "Regal" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Besprechen" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Buch" @@ -3075,6 +3235,8 @@ msgid "View imported review" msgstr "Importbericht ansehen" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importiert" @@ -3110,114 +3272,119 @@ msgstr "Wenn du etwaige Status (Kommentare, Rezensionen oder Zitate) migrieren m #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Derzeit darfst Du alle %(user_import_hours)s Stunden einen Account importieren." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "Derzeit darfst Du alle %(hours)s Stunden einen Account importieren." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "Zum Zeitpunkt %(next_available)s kannst Du erneut einen Account aus einer Exportdatei importieren" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Du kannst um %(next_time)s erneut ein Konto aus einer Exportdatei importieren" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Schritt 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Wähle einen Dateiexport eines anderen BookWyrm-Accounts aus. Das Dateiformat sollte .tar.gz sein." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Schritt 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Wähle die Checkboxen ab für Daten, die Du nicht importieren möchtest." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Profil" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Überschreibe Anzeigename, Zusammenfassung und Profilbild" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Benutzereinstellungen" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Überschreibt:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "Ob eine manuelle Freigabe für Benutzer*innen erforderlich ist, die dir folgen wollen" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "Ob deine Folgenden und Gefolgte auf deinem Profil angezeigt werden" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" -msgstr "Ob dein Leseziel in deinem Profil angezeigt wird" +msgstr "Ob dein Leseziel auf deinem Profil angezeigt wird" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "Ob dir Benutzer*innen zum Folgen vorgeschlagen werden" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Ob dein Account anderen vorgeschlagen wird" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Deine Zeitzone" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "Deine Standardeinstellung für Beitragssichtbarkeit" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Folgende und Gefolgte" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Blockierte Accounts" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Leseziel" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Überschreibe die Leseziele aller in der Import-Datei vorhanden Jahre" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Regale" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Leseverlauf" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Rezensionen" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Kommentare zu Büchern" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Buchlisten" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Gespeicherte Listen" @@ -3241,15 +3408,18 @@ msgid "Reject" msgstr "Ablehnen" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Fehlgeschlagene Elemente" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Fehlerbehebung" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Ein erneutes Ausprobieren eines Imports kann bei fehlgeschlagenen Elementen in folgenden Fällen helfen:" @@ -3258,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "Das Buch wurde seit diesem Import zur Instanz hinzugefügt" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Ein vorübergehender Fehler oder ein Timeout haben dazu geführt, dass die externe Datenquelle nicht verfügbar war." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm wurde seit diesem Import mit einem Bugfix aktualisiert" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Kontaktiere deine*n Administrator*in oder melde ein Problem, wenn Importe unerwartet fehlschlagen." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Importstatus" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Status des wiederholten Imports" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Benutzerimporte" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Gesamt" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statusmeldungen" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Gefolgte und Geblockte" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Importierte Bücher" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Problembehebung für Importe" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "Ihr Konto wurde nicht als Alias für des ursprünglichen Kontos festgelegt" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "Eine Wiederholung eines Importversuchs wird in folgenden Fällen nicht funktionieren:" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "Ein Konto, Status oder BookWyrm-Server wurde gelöscht, nachdem Ihre Importdatei erstellt wurde" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "Derzeit darfst Du alle %(hours)s Stunden einen Importversuch starten oder wiederholen." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Du kannst diesen Import um %(next_time)s erneut versuchen" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Beziehungen" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Grund" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Erstelle ein Benutzer*inkonto" @@ -3323,7 +3568,7 @@ msgid "Login" msgstr "Anmeldung" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Anmelden" @@ -3339,22 +3584,22 @@ msgstr "Alles klar! E-Mail-Adresse bestätigt." msgid "Username:" msgstr "Anmeldename:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Passwort:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Mehr über diese Seite" @@ -3382,7 +3627,7 @@ msgstr "Passwort zurücksetzen" msgid "Reactivate Account" msgstr "Konto reaktivieren" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Konto reaktivieren" @@ -3392,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s-Suche" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Nach einem Buch, einem Account oder einer Liste suchen" +msgid "Search for a book, author, user, or list" +msgstr "Nach einem Buch, Autor*in, Benutzer*in oder einer Liste suchen" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3606,6 +3851,8 @@ msgid "List position" msgstr "Listenposition" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Übernehmen" @@ -3930,7 +4177,7 @@ msgstr "%(related_user)s und %(other_user_ #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Eine neue Link-Domain muss überprüft werden" msgstr[1] "%(display_count)s neue Link-Domains müssen moderiert werden" @@ -4101,21 +4348,21 @@ msgstr "Du folgst %(account)s bereits" msgid "You have already requested to follow %(account)s" msgstr "Du hast bei %(account)s bereits angefragt, ob du folgen darfst" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "%(username)s im Fediverse folgen" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Folge %(username)s von einem anderen Konto im Fediverse wie BookWyrm, Mastodon oder Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Benutzerkennung, mit der gefolgt wird:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Folgen!" @@ -4156,80 +4403,12 @@ msgstr "Erstmal anmelden..." msgid "Follow %(username)s" msgstr "Folge %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Du folgst nun %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Zwei-Faktor-Authentifizierung" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "2FA-Einstellungen erfolgreich aktualisiert" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Notiere dir diese Codes oder speichere sie an einem sicheren Ort." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Du musst sie in der Reihenfolge verwenden und sie werden nicht wieder angezeigt." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Zwei-Faktor-Authentifizierung ist für dein Konto aktiviert." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "2FA deaktivieren" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Du kannst Backup-Codes generieren, die du verwenden kannst, falls du keinen Zugriff auf deine Authentifizierungs-App hast. Wenn du neue Codes generierst, werden alle zuvor generierten Backup-Codes nicht mehr funktionieren." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Backup-Codes generieren" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Scanne den QR-Code mit deiner Authentifizierungs-App und gebe den Code aus deiner App unten ein, um zu bestätigen, dass deine App eingerichtet ist." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Setup-Schlüssel verwenden" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Account-Name:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Code:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Gib den Code aus Deiner 2FA-App ein:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Mit der Zwei-Faktor-Authentifizierung (2FA) kannst du dein Konto sicherer machen. Dazu musst du bei jeder Anmeldung einen einmaligen Code mit einer Handy-App wie Authy, Google Authenticator oder Microsoft Authenticator eingeben." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Bestätige dein Passwort, um mit der Einrichtung von 2FA zu beginnen." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "2FA einrichten" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 @@ -4329,6 +4508,12 @@ msgstr "Benutzer*inkonto dauerhaft löschen" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Das Löschen des Benutzer*inkonto kann nicht rückgängig gemacht werden. Der Benutzer*inname kann nicht erneut registriert werden." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "2FA deaktivieren" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Zwei-Faktor-Authentifizierung deaktivieren" @@ -4358,12 +4543,12 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Anzeige" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privatsphäre" @@ -4372,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Zeige Leseziel-Erinnerung im Feed an" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Bewertungen anzeigen" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Vorgeschlagene Benutzer*innen anzeigen" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Diesen Account in vorgeschlagene Accounts einschließen" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Dein Konto wird im Verzeichnis angezeigt und eventuell anderen Benutzer*innen empfohlen." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Bevorzugte Zeitzone:" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Design:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Follower*innen manuell bestätigen" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Folgende und Gefolgte im Profil ausblenden" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Voreinstellung für Beitragssichtbarkeit:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Auf der Suche nach der Privatsphäre des Regals? Du kannst für jedes deiner Regale ein separates Sichtbarkeitsniveau festlegen. Gehe zu Deine Bücher, wähle ein Regal aus der Registerleiste und klicke auf \"Regal bearbeiten\"" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "BookWyrm-Konto exportieren" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "Hier kannst du eine Export-Datei erstellen. So kannst du deine Daten zu einem anderen BookWyrm-Account migrieren." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    Deine Datei wird enthalten:

    • Profil
    • Die meisten Benutzereinstellungen
    • Leseziele
    • Regale
    • Leseverlauf
    • Rezensionen
    • Die Status
    • Eigene und gespeicherte Listen
    • Gefolgte und geblockte Benutzer*innen

    Deine Datei wird nicht enthalten:

    • Direktnachrichten
    • Antworten auf deine Status
    • Gruppen
    • Favoriten
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "In der Datei sind enthalten:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "die meisten Benutzereinstellungen" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "eigene Listen und gespeicherte Listen" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Benutzer*innen, denen du folgst und die, die du blockiert hast" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "In der Datei sind nicht enhalten:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Direktnachrichten" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Antworten auf deine Status" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favoriten" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "In deinem neuen BookWyrm-Account kannst du entscheiden, was du importieren möchtest: Du musst nicht alles importieren, was exportiert wurde." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "Wenn du etwaige Status (Kommentare, Rezensionen oder Zitate) migrieren möchtest, musst du entweder den Account, zu dem du migrierst, als einen Alias dieses Accounts setzen, oder diesen Account zu dem Account umziehen, bevor du deine Benutzerdaten importierst." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Neue Benutzerexporte sind derzeit deaktiviert." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "Einstellungen für Benutzerexporte können über die Importseite im Admin-Dashboard geändert werden." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "Zum Zeitpunkt %(next_available)s kannst du erneut eine Export-Datei erstellen" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "Im Durchschnitt haben die letzten Exporte %(hours)s Stunden gedauert." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "Im Durchschnitt haben die letzten Exporte %(minutes)s Minuten gedauert." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Account-Exportdatei erstellen" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Zuletzt exportiert" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." -msgstr "Die Datei mit dem exportierten Account wird als 'complete' angezeigt, sobald sie fertig ist. Das kenn einige Zeit dauern. Klicke auf den Link, um sie herunterzuladen." +msgstr "Die Datei mit dem exportierten Account wird als 'Abgeschlossen' angezeigt, sobald sie fertig ist. Das kann einige Zeit dauern. Klicke auf den Link, um sie herunterzuladen." + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Zeitpunkt" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Größe" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Export herunterladen" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "Archiv ist nicht mehr verfügbar" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4478,6 +4727,10 @@ msgstr "Datei herunterladen" msgid "Account" msgstr "Account" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Account umziehen" @@ -4515,6 +4768,124 @@ msgstr "Denken Sie daran, diesen Benutzernamen als Alias des Zielkontos hinzuzuf msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Geben Sie den Benutzernamen für das Konto ein, zu dem Sie wechseln möchten, z.B. user@example.com :" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Zwei-Faktor-Authentifizierung" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "2FA-Einstellungen erfolgreich aktualisiert" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Notiere dir diese Codes oder speichere sie an einem sicheren Ort." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Du musst sie in der Reihenfolge verwenden und sie werden nicht wieder angezeigt." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Zwei-Faktor-Authentifizierung ist für dein Konto aktiviert." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Du kannst Backup-Codes generieren, die du verwenden kannst, falls du keinen Zugriff auf deine Authentifizierungs-App hast. Wenn du neue Codes generierst, werden alle zuvor generierten Backup-Codes nicht mehr funktionieren." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Backup-Codes generieren" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Scanne den QR-Code mit deiner Authentifizierungs-App und gebe den Code aus deiner App unten ein, um zu bestätigen, dass deine App eingerichtet ist." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Setup-Schlüssel verwenden" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Account-Name:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Code:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Gib den Code aus Deiner 2FA-App ein:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Mit der Zwei-Faktor-Authentifizierung (2FA) kannst du dein Konto sicherer machen. Dazu musst du bei jeder Anmeldung einen einmaligen Code mit einer Handy-App wie Authy, Google Authenticator oder Microsoft Authenticator eingeben." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Bestätige dein Passwort, um mit der Einrichtung von 2FA zu beginnen." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "2FA einrichten" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4560,6 +4931,7 @@ msgstr "Zu lesen angefangen" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Fortschritt" @@ -4690,8 +5062,8 @@ msgstr "Suchanfrage" msgid "Search type" msgstr "Suchtyp" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4701,12 +5073,12 @@ msgstr "Suchtyp" msgid "Users" msgstr "Benutzer*innen" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Für \"%(query)s\" wurden keine Ergebnisse gefunden" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4728,7 +5100,7 @@ msgstr "Ändern" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Ankündigungen" @@ -4746,13 +5118,13 @@ msgstr "Nein" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Startdatum:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Enddatum:" @@ -4821,7 +5193,6 @@ msgstr "Farbe:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Regeln für automatische Moderation" @@ -4834,35 +5205,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Accounts oder Status, die bereits gemeldet wurden (unabhängig davon, ob der Bericht gelöst wurde) werden nicht markiert." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Zeitplan:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Letzte Ausführung:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Gesamtanzahl:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Aktiviert:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Zeitplan löschen" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Jetzt ausführen" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Letztes Ausführungsdatum wird nicht aktualisiert" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Scan planen" @@ -4907,6 +5286,7 @@ msgstr "Regel entfernen" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Celery-Status" @@ -4935,6 +5315,7 @@ msgid "Import triggered" msgstr "Import ausgelöst" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Konnektoren" @@ -4978,8 +5359,9 @@ msgid "Active Tasks" msgstr "Aktive Aufgaben" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4992,6 +5374,8 @@ msgid "Run time" msgstr "Dauer" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Priorität" @@ -5024,6 +5408,66 @@ msgstr "Das Leeren von Warteschlangen kann zu ernsthaften Problemen bis hin zum msgid "Errors" msgstr "Fehler" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "Neuen Connector erstellen" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Grund der Deaktivierung:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Deaktivieren" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "Aktivieren" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "Connector-Einstellungen" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "Connectoren sind Datenquellen für Bücher und Autoren." + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "Connector-Einstellungen bestimmen nur, ob ein Connector verwendet wird, um Suchergebnisse zu liefern. Um Interaktionen mit anderen föderierten Servern, einschließlich Domainblöcken, zu verwalten, siehe" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Föderierte Instanzen" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Aktualisieren" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5031,7 +5475,7 @@ msgid "Dashboard" msgstr "Übersicht" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Benutzer*innen insgesamt" @@ -5040,40 +5484,36 @@ msgstr "Benutzer*innen insgesamt" msgid "Active this month" msgstr "Diesen Monat aktiv" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statusmeldungen" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Werke" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Instanzaktivität" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervall:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Tage" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Wochen" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Neuanmeldungen" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Statusaktivitäten" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Erstellte Werke" @@ -5085,9 +5525,13 @@ msgstr "Registrierungen" msgid "Statuses posted" msgstr "Statusmeldungen veröffentlicht" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Gesamt" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Möchtest du automatisch nach neuen BookWyrm-Versionen suchen? (empfohlen)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Prüfung planen" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5169,7 +5613,7 @@ msgstr "Derzeit sind keine E-Mail-Domains gesperrt" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "E-Mail-Konfiguration" @@ -5182,7 +5626,7 @@ msgid "Successfully sent test email." msgstr "Test-Email erfolgreich gesendet." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "E-Mail-Absender:" @@ -5230,15 +5674,6 @@ msgstr "Test-Email senden" msgid "Add instance" msgstr "Instanz hinzufügen" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Föderierte Instanzen" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5314,12 +5749,6 @@ msgstr "Anmerkungen" msgid "No notes" msgstr "Keine Anmerkungen" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blockieren" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Alle Benutzer*innen dieser Instanz werden deaktiviert." @@ -5372,6 +5801,49 @@ msgstr "Software" msgid "No instances found" msgstr "Keine Instanzen gefunden" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Abgeschlossen" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5418,7 +5890,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Einige Nutzer könnten versuchen eine große Anzahl von Büchern zu importieren, was sie eventuell verhindern möchten." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Setzen Sie den Wert auf 0, falls sie keine Limitierung wünschen." @@ -5438,62 +5910,81 @@ msgstr "Tage." msgid "Set limit" msgstr "Limit festlegen" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Starten von neuen Benutzerexporten deaktivieren" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Dies ist nur für den Einsatz gedacht, wenn bei Exporten etwas sehr schiefgegangen ist und du das Feature pausieren musst, während du die Probleme angehst." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Solange Exporte deaktiviert sind, dürfen Benutzer*innen keine neuen Benutzerexporte starten, aber bereits bestehende Exporte werden hiervon nicht beeinträchtigt." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Nutzer-Exporte deaktivieren" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "Beschränke, wie oft Benutzer*innen importieren und exportieren können" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "Einige Benutzer*innen versuchen vielleicht, ihre Importe oder Exporte sehr häufig durchzuführen. Das kannst Du beschränken." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Beschränke Importe und Exporte von Benutzer*innen auf einmal pro " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Beschränke, wie oft Benutzer*innen Nutzerdaten importieren und exportieren können" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "Stunden" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" -msgstr "Limit ändern" +msgstr "Ändere Limit" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Benutzer*innen können derzeit keine neuen Benutzerexporte starten. Dies ist die Standardeinstellung." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Es ist derzeit nicht möglich, Benutzerexporte bereitzustellen, wenn Azure Speicher verwendet wird." -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Benutzerexporte aktivieren" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Buch-Importe" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Abgeschlossen" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Benutzer*in" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Aktualisierungsdatum" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Ausstehende Einträge" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Erfolgreiche Objekte" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Keine passenden Importe gefunden." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Benutzerimporte" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5657,6 +6148,10 @@ msgstr "Moderation" msgid "Reports" msgstr "Meldungen" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5667,22 +6162,26 @@ msgstr "Link-Domains" msgid "System" msgstr "System" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celery-Status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Instanzeinstellungen" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Seiteneinstellungen" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5690,7 +6189,7 @@ msgstr "Seiteneinstellungen" msgid "Registration" msgstr "Registrierung" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5896,6 +6395,61 @@ msgstr "Behoben" msgid "No reports found." msgstr "Keine Meldungen gefunden." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Geplante Aufgaben" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Aufgaben" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Name" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Celery Aufgabe" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Änderungsdatum" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Zuletzt ausgeführt am" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Zeitplan" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "ID des Zeitplans" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Aktiviert" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Entfernen" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Keine geplanten Aufgaben" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Zeitpläne" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Keine Zeitpläne gefunden" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6141,10 +6695,6 @@ msgstr "Manuell zugelassene Follower*innen:" msgid "Discoverable:" msgstr "Entdeckbar:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Grund der Deaktivierung:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Instanzdetails" @@ -6238,8 +6788,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Deine Domain scheint falsch konfiguriert zu sein. Es sollte kein Protokoll oder Schrägstriche enthalten." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Du verwendest BookWyrm im Produktionsmodus ohne https. USE_HTTPS sollte in der Produktion aktiviert werden." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "Du verwendest BookWyrm auf localhost. Dies sollte niemals in einer Produktionsumgebung verwendet werden." #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6249,39 +6799,39 @@ msgstr "Einstellungen" msgid "Instance domain:" msgstr "Instanz Domain:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokoll:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "Basis-URL der Instanz:" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "S3 benutzen:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Standardsprache der Oberfläche:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Vorschaubilder aktivieren:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Miniaturbilder aktivieren:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Sieht alles richtig aus?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Dies ist Ihre letzte Chance, deine Domain und dein Protokoll zu setzen." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Du kannst die Instanz-Einstellungen in der Datei .env auf deinem Server ändern." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Zur Installationsanleitung" @@ -6298,7 +6848,7 @@ msgid "Need help?" msgstr "Brauchst du Hilfe?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Regal erstellen" @@ -6306,59 +6856,72 @@ msgstr "Regal erstellen" msgid "Edit Shelf" msgstr "Regal bearbeiten" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Alle Bücher" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Bücher importieren" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s Buch" msgstr[1] "%(formatted_count)s Bücher" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(Anzeige: %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Regal bearbeiten" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Regal löschen" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Ins Regal gestellt" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Gestartet" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Abgeschlossen" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Bis" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "Wir konnten keine Bücher finden, die mit %(shelves_filter_query)s übereinstimmen" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Dieses Regal ist leer." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Nach Stichwort filtern" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Hier Text eingeben" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Einladen" @@ -6460,10 +7023,6 @@ msgstr "Spoileralarm!" msgid "Comment:" msgstr "Kommentar:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Aktualisieren" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Veröffentlichen" @@ -6489,7 +7048,7 @@ msgstr "Auf Seite:" msgid "At percent:" msgstr "Bei Prozent:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "bis" @@ -6534,10 +7093,6 @@ msgstr "Filter anwenden" msgid "Follow @%(username)s" msgstr "@%(username)s folgen" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Folgen" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Folgeanfrage zurücknehmen" @@ -6570,7 +7125,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "Der Quellcode von BookWyrm ist frei verfügbar. Du kannst zu ihm auf GitHub beitragen oder Probleme melden." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Keine Bewertung" @@ -6582,7 +7137,7 @@ msgstr[0] "%(half_rating)s Stern" msgstr[1] "%(half_rating)s Sterne" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6811,6 +7366,10 @@ msgstr "Aufhören zu lesen" msgid "Finish reading" msgstr "Lesen abschließen" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Bewertung anzeigen" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Status anzeigen" @@ -7166,8 +7725,9 @@ msgid "View profile and more" msgstr "Profil und mehr ansehen" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Datei überschreitet die maximale Größe von 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7186,25 +7746,9 @@ msgstr[1] "%(num)d Bücher - von %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Status -Updates von {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Rezensionen von {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Zitate von {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Kommentare von {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "Ein neues Benutzerkonto" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/el_GR/LC_MESSAGES/django.mo b/locale/el_GR/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..6ed9f1f3bb Binary files /dev/null and b/locale/el_GR/LC_MESSAGES/django.mo differ diff --git a/locale/el_GR/LC_MESSAGES/django.po b/locale/el_GR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..7170956416 --- /dev/null +++ b/locale/el_GR/LC_MESSAGES/django.po @@ -0,0 +1,7757 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Greek\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: el\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Μία Ημέρα" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Μία Εβδομάδα" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Ένας Μήνας" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Δεν λήγει" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Απεριόριστα" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Λάθος κωδικός" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Λάθος Κωδικός" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Η ημερομηνίας λήξης της ανάγνωσης δεν μπορεί να είναι πριν από την ημερομηνία έναρξης." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Η ημερομηνίας διακοπής της ανάγνωσης δεν μπορεί να είναι πριν την ημερομηνία έναρξης." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Υπάρχει ήδη ένας χρήστης με αυτό το όνομα χρήστη" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Το συγκεκριμένο email χρησιμοποιείται ήδη από άλλον χρήστη." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Λανθασμένος κωδικός" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Αυτή η διεύθυνση διαδικτύου έχει αποκλειστεί. Παρακαλώ επικοινωνήστε με το διαχειριστή σας εάν νομίζετε ότι πρόκειται για σφάλμα." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Αυτός ο σύνδεσμος με τον τύπο αρχείου έχει ήδη προστεθεί για αυτό το βιβλίο. Αν δεν είναι ορατό, η διεύθυνση διαδικτύου εξακολουθεί να εκκρεμεί." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Σειρά Λίστας" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Τίτλος Βιβλίου" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Αξιολογήσεις" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Ταξινόμηση κατά" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Αύξουσα" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Φθίνουσα" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Πρωταρχικό" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Επιτυχία" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Σύνδεσμος" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Προειδοποίηση" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Κίνδυνος" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Αυτόματη δημιουργία αναφοράς" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Σε εκκρεμότητα" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Αυτοδιαγραφή" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Αναστολή συντονιστή" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Διαγραφή συντονιστή" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Aποκλεισμός τομέα" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Ηχογραφημένο βιβλίο" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "Ηλεκτρονικό βιβλίο" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Γραφικό μυθιστόρημα" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Σκληρό εξώφυλλο" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Χαρτόδετο" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Σχόλιο" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Έλεγχος" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Ομοσπονδιακό" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Μπλοκαρισμένο" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s Δεν είναι ένα έγκυρο remote_id" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s δεν είναι έγκυρο όνομα χρήστη" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "όνομα χρήστη" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Υπάρχει ήδη ένας χρήστης με αυτό το όνομα χρήστη." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Δημόσιο" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Μη καταχωρημένο" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Ακόλουθοι" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Ιδιωτικό" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "Ενεργός" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Ολοκλήρωμένα" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Διακόπηκε" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Η εισαγωγή σταμάτησε" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Σφάλμα φόρτωσης βιβλίου" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Αδυναμία εύρεσης ενός ταιριάσματος για το βιβλίο" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Δωρεάν" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Μπορεί να αγοραστεί" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Διαθέσιμο για δανεισμό" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Εγκρίθηκε" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Κριτικές" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Σχόλια" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Οτιδήποτε άλλο" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Αρχική σελίδα" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Χρονολόγιο Βιβλίων" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Βιβλία" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "Αγγλικά" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (Καταλανικά)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (Γερμανικά)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (Ισπανικά)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (Ιταλικά)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (Φινλανδικά)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (Γαλλικά)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (Λιθουανικά)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (Νορβηγικά)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (Πολωνικά)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (Πορτογαλικά Βραζιλίας)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (Ευρωπαϊκά Πορτογαλικά)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (Ρουμανικά)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (Σουηδικά)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (Απλοποιημένα Κινέζικα)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (Παραδοσιακά Κινέζικα)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "Άρνηση Δικαιώματος" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Δεν Βρέθηκε" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Η σελίδα που ζητήσατε δεν φαίνεται να υπάρχει!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Ουπς!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Σφάλμα Διακομιστή" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Κάτι πήγε στραβά! Λυπούμαστε γι' αυτό." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Σχετικά με" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Καλώς ήλθατε στο %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Γνωρίστε τους διαχειριστές σας" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Επόπτης" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Διαχειριστής" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Αποστολή άμεσου μηνύματος" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Κώδικας Δεοντολογίας" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Ενεργοί χρήστες:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Καταστάσεις που δημοσιεύτηκαν:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Έκδοση λογισμικού:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "Σχετικά με %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Πολιτική Απορρήτου" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s στα βιβλία" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s στα βιβλία" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "%(display_name)s χρόνια ανάγνωσης" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Κοινοποίηση σελίδας" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Αντιγραφή διεύθυνσης" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Αντιγράφηκε!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "Κατάσταση κοινής χρήσης: δημόσια με κλειδί" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Η σελίδα είναι ορατή από οποιονδήποτε με την πλήρη διεύθυνση." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Να γίνει ιδιωτική σελίδα" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Κατάσταση κοινής χρήσης: ιδιωτική" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Η σελίδα είναι ιδιωτική, μόνο εσείς μπορείτε να τη δείτε." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Κάντε τη σελίδα δημόσια" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "When you make your page private, the old key won’t give access to the page anymore. Ένα νέο κλειδί θα δημιουργηθεί εάν η σελίδα ξαναγίνει δημόσια." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Δυστυχώς, %(display_name)s δεν τελείωσε κανένα βιβλίο σε %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "Σε %(year)s, %(display_name)s διάβασε %(books_total)s βιβλίο
    συνολικά %(pages_total)s σελίδες!" +msgstr[1] "Σε %(year)s, %(display_name)s διάβασε %(books_total)s βιβλία
    συνολικά %(pages_total)s σελίδες!" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "Τέλεια!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "Αυτό σημαίνει κατά μέσο όρο %(pages)s σελίδες ανά βιβλίο." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "Το πιο σύντομο διάβασμα φέτος…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "ανά" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s σελίδες" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "…και το μεγαλύτερο" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "%(display_name)s έθεσε ένα στόχο ανάγνωσης %(goal)s βιβλίου στο %(year)s,
    και πέτυχε %(goal_percent)s%% αυτό το στόχο" +msgstr[1] "%(display_name)s έθεσε ένα στόχο ανάγνωσης %(goal)s βιβλίων στο %(year)s,
    και πέτυχε %(goal_percent)s%% αυτό το στόχο" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "Εύγε!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "%(display_name)s άφησε %(ratings_total)s βαθμολογία,
    η μέση βαθμολογία είναι %(rating_average)s" +msgstr[1] "%(display_name)s άφησε %(ratings_total)s βαθμολογίες,
    η μέση βαθμολογία είναι %(rating_average)s" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "Η καλύτερη αξιολόγησή" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "Η βαθμολογία που έβαλε: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "Όλα τα βιβλία του %(display_name)s που διαβάστηκαν σε %(year)s" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Επεξεργασία Συγγραφέα" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Λεπτομέρειες συγγραφέα" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Ψευδώνυμα:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Γεννήθηκε:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Πέθανε:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Εξωτερικοί σύνδεσμοι" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Βικιπαίδεια" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "Ιστοσελίδα" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Προβολή αρχείου ISNI" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Φόρτωση δεδομένων" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "Προβολή στο OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Προβολή στο Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "Προβολή στο LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Δείτε στο Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Βιβλία από %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Επεξεργασία Συγγραφέα:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Προστέθηκε:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Ενημερώθηκε:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Τελευταία επεξεργασία από:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Μεταδεδομένα" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Όνομα:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Διαχωρίστε τις πολλαπλές τιμές με κόμμα." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Σύντομο βιογραφικό:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Σύνδεσμος Wikipedia:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "Ιστοσελίδα:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Ημερομηνία γέννησης:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Ημερομηνία θανάτου:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Αναγνωριστικά Συγγραφέα" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Κλειδί Openlibrary:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "Inventaire ID:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Κλειδί Librarything:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Κλειδί Goodreads:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Αποθήκευση" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Ακύρωση" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Υπάρχοντα μεταδεδομένα δεν θα overwritten." + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Επιβεβαίωση" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "Αδυναμία σύνδεσης με την απομακρυσμένη πηγή." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Επεξεργασία Βιβλίου" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Κλικ για προσθήκη εξωφύλλου" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Αποτυχία φόρτωσης εξωφύλλου" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Κλικ για μεγέθυνση" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s αξιολόγηση)" +msgstr[1] "(%(review_count)s αξιολογήσεις)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Προσθήκη Περιγραφής" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Περιγραφή:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s έκδοση" +msgstr[1] "%(count)s εκδόσεις" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Έχετε κρατήσει αυτή την έκδοση στο:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "Μια διαφορετική έκδοση αυτού του βιβλίου είναι στο ράφι σας %(shelf_name)s." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Η δραστηριότητα ανάγνωσής σας" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Προσθήκη ημερομηνιών ανάγνωσης" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "Δεν έχετε καμία δραστηριότητα ανάγνωσης για αυτό το βιβλίο." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Οι κριτικές σας" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Τα σχόλιά σας" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Τα αποσπάσματά σας" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Θέματα" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Τοποθεσίες" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Λίστες" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Προσθήκη σε λίστα" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Προσθήκη" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "Αριθμός OCLC:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "ISFDB ID:" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Προσθέστε ένα εξώφυλλο" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Ανέβασμα εξώφυλλου:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Προεπισκόπηση εξωφύλλου βιβλίου" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Κλείσιμο" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Επεξεργασία \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Προσθήκη Βιβλίου" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Επιβεβαίωση Πληροφοριών Βιβλίου" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "Είναι \"%(name)s\" ένας από αυτούς τους συγγραφείς;" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Συγγραφέας του %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "Συγγραφέας του %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Βρείτε περισσότερες πληροφορίες στο isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Αυτός είναι ένας νέος συγγραφέας" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Δημιουργία ενός νέου συγγραφέα: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Είναι μια έκδοση ενός υπάρχοντος έργου;" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Αυτό είναι ένα νέο έργο" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Προηγούμενο" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Τίτλος:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Υπότιτλοι:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Σειρά:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Αριθμός σειράς:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Γλώσσες:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Θέματα:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Προσθήκη θέματος" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Αφαίρεση θέματος" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Προσθήκη Άλλου Θέματος" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Έκδοση" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Εκδότης:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Ημερομηνία πρώτης έκδοσης:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Ημερομηνία έκδοσης:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Συγγραφείς" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Αφαίρεση %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Σελίδα συγγραφέα %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Προσθήκη Συγγραφέων:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Προσθήκη Συγγραφέα" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Jane Doe" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Προσθήκη Άλλου Συγγραφέα" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Εξώφυλλο" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Μορφή:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Λεπτομέρειες μορφής:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Σελίδες:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Αναγνωριστικά Βιβλίου" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Κλειδί Openlibrary:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Εκδόσεις του %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Δεν μπορείτε να βρείτε την έκδοση που ψάχνετε;" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Προσθήκη άλλης έκδοσης" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "Οποιαδήποτε" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Γλώσσα:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Αναζήτηση εκδόσεων" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Προσθήκη συνδέσμου αρχείου" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "Σύνδεσμοι από άγνωστους τομείς θα πρέπει να εγκριθούν από έναν συντονιστή πριν προστεθούν." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "Διεύθυνση URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Τύπος αρχείου:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Διαθεσιμότητα:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Επεξεργασία συνδέσμων" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Σύνδεσμοι για «%(title)s»" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Προστέθηκε από" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Τύπος Αρχείου" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Τομέας" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Κατάσταση" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Ενέργειες" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Άγνωστος χρήστης" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Αναφορά ως ανεπιθύμητη αλληλογραφία" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Δεν υπάρχουν διαθέσιμοι σύνδεσμοι για αυτό το βιβλίο." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Προσθήκη συνδέσμου στο αρχείο" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Σύνδεσμοι Αρχείων" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "Λάβετε αντίγραφο" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Δεν υπάρχουν διαθέσιμοι σύνδεσμοι" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "Έξοδος από BookWyrm" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "Αυτός ο σύνδεσμος σας πηγαίνει στο: %(link_url)s.
    Θέλετε να πάτε εκεί;" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Συνέχεια" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s σελίδες" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s σελίδες" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s γλώσσα" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Δημοσιεύθηκε %(date)s από %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Δημοσιεύθηκε από %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Δημοσιεύθηκε %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "βαθμολογήστε" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "Σειρά από" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "Βιβλίο %(series_number)s" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "Μη ταξινομιμένο βιβλίο" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Υπάρχοντα μεταδεδομένα δεν θα overwritten." + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Επεξεργασία Κατάστασης" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Επιβεβαιώστε τη διεύθυνση email σας" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Έχει σταλεί ένας κωδικός επιβεβαίωσης στη διεύθυνση ηλεκτρονικού ταχυδρομείου που χρησιμοποιήσατε για την εγγραφή του λογαριασμού σας." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Συγνώμη! Δεν μπορούσαμε να βρούμε αυτό τον κωδικό." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Κωδικός επιβεβαίωσης:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Υποβολή" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Δεν μπορείτε να βρείτε τον κωδικό σας;" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Επαναποστολή του email επιβεβαίωσης" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "Διεύθυνση email:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Επανάληψη αποστολής συνδέσμου" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Κοινότητα" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Τοπικοί χρήστες" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Ομοσπονδιακή κοινότητα" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Κατάλογος" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Κάντε το προφίλ σας ανιχνεύσιμο σε άλλους χρήστες του BookWyrm." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Εγγραφή στον Κατάλογο" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Μπορείτε να εξαιρεθείτε ανά πάσα στιγμή στις ρυθμίσεις προφίλ σας." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Παράβλεψη μηνύματος" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Ταξινόμηση κατά" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Πρόσφατα ενεργοί" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Προτεινόμενο" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Κλειδωμένος λογαριασμός" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "ακόλουθος που ακολουθείτε" +msgstr[1] "ακόλουθοι που ακολουθείτε" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "βιβλίο στα ράφια σας" +msgstr[1] "βιβλία στα ράφια σας" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "αναρτήσεις" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "τελευταία δραστηριότητα" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Τύπος χρήστη" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "Χρήστες BookWyrm" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "Όλοι οι γνωστοί χρήστες" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "%(username)s θέλει να διαβάσει το %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "%(username)s άρχισε να διαβάζει το %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "Ανακαλύψτε" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Προβολή κατάστασης" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Επιβεβαίωση email" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Ή εισάγετε τον κωδικό \"%(confirmation_code)s\" στην σύνδεση." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "Προβολή αναφοράς" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "Νέα αναφορά για %(site_name)s" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "Ζητήσατε να επαναφέρετε τον %(site_name)s κωδικό πρόσβασής σας. Κάντε κλικ στον παρακάτω σύνδεσμο για να ορίσετε ένα νέο κωδικό πρόσβασης και να συνδεθείτε στον λογαριασμό σας." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Επαναφορά κωδικού πρόσβασης" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Εάν δε ζητήσατε να γίνει επαναφορά του κωδικού πρόσβασης, απλά αγνοήστε αυτό το email." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Επαναφέρετε τον κωδικό πρόσβασης %(site_name)s" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "Αυτό είναι ένα τεστ email." + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "Τεστ email" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "%(site_name)s αρχική σελίδα" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Επικοινωνήστε με τον διαχειριστή του ιστότοπου" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "Εγγραφή στο BookWyrm" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "Άμεσα Μηνύματα με %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "Άμεσο Μήνυμα" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Όλα τα μηνύματα" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Δεν έχετε μηνύματα αυτή τη στιγμή." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Δεν υπάρχουν δραστηριότητες αυτή τη στιγμή! Προσπαθήστε να ακολουθήσετε έναν χρήστη για να ξεκινήσετε" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "Εναλλακτικά, μπορείτε να δοκιμάσετε να ενεργοποιήσετε περισσότερους τύπους κατάστασης" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s Στόχος Ανάγνωσης" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Μπορείτε να ορίσετε ή να αλλάξετε το στόχο ανάγνωσης οποιαδήποτε στιγμή από τη σελίδα του προφίλ σας " + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Ενημερώσεις" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Τα Βιβλία σας" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Δεν υπάρχουν βιβλία εδώ τώρα! Προσπαθήστε να ψάξετε για ένα βιβλίο για να ξεκινήσετε" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "Έχετε δεδομένα βιβλίων από άλλη υπηρεσία, όπως το GoodReads;" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Εισαγωγή του ιστορικού ανάγνωσής σας" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Ποιον να ακολουθήσετε" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Να μην εμφανίζονται προτεινόμενοι χρήστες" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Προβολή καταλόγου" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "Το τέλος της χρονιάς είναι η καλύτερη στιγμή για να κάνετε απολογισμό όλων των βιβλίων που διαβάζονται κατά τη διάρκεια των τελευταίων 12 μηνών. Πόσες σελίδες έχετε διαβάσει; Ποιο βιβλίο είναι το καλύτερο που διαβάσατε φέτος; Έχουμε συντάξει αυτά τα στατιστικά και πολλά άλλα!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "Ανακαλύψτε τα στατιστικά σας για το %(year)s!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "Έχετε διαβάσει το %(book_title)s;" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Προσθήκη στα βιβλία σας" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "Για Διάβασμα" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Τρέχουσα Ανάγνωση" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Διαβασμένο" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Διακοπή Ανάγνωσης" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Τι διαβάζετε;" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Αναζητήστε ένα βιβλίο" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "Δεν βρέθηκαν βιβλία για \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Μπορείτε να προσθέσετε βιβλία όταν αρχίσετε να χρησιμοποιείτε το %(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Αναζήτηση" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Προτεινόμενα Βιβλία" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Δημοφιλή στο %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Δεν βρέθηκαν βιβλία" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Αποθήκευση και & συνέχεια" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Καλώς ήλθατε" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Αυτά είναι κάποια πρώτα βήματα για να ξεκινήσετε." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Δημιουργία του προφίλ σας" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Προσθήκη βιβλίων" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Βρείτε φίλους" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Παραλείψτε αυτό το βήμα" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Ολοκλήρωση" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Εμφανιζόμενο όνομα:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Περίληψη:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Λίγες πληροφορίες για εσάς" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Φωτογραφία προφίλ:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Χειροκίνητη έγκριση ακολούθων:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Εμφάνιση αυτού του λογαριασμού σε προτεινόμενους χρήστες:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Ο λογαριασμός σας θα εμφανίζεται στον κατάλογο, και μπορεί να συνιστάται σε άλλους χρήστες του BookWyrm." + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Αναζήτηση χρήστη" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "Δεν βρέθηκαν χρήστες για \"%(query)s\"" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "Δημιουργία Ομάδας" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "Διαχειρίζεται από %(username)s" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Διαγραφή αυτής της ομάδας;" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Διαγραφή" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Επεξεργασία ομάδας" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Όνομα Ομάδας:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Περιγραφή Ομάδας:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Διαγραφή ομάδας" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Τα μέλη αυτής της ομάδας μπορούν να δημιουργήσουν λίστες επιμελημένων ομάδων." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Δημιουργία λίστας" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "Αυτή η ομάδα δεν έχει λίστες" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Επεξεργασία ομάδας" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "Αναζήτηση για να προσθέσετε ένα χρήστη" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Αποχώρηση από την ομάδα" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "Σας ακολουθεί" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "Προσθέστε νέα μέλη!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s ακόλουθος που ακολουθείτε" +msgstr[1] "%(mutuals)s ακόλουθοι που ακολουθείτε" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s βιβλίο στα ράφια σας" +msgstr[1] "%(shared_books)s βιβλία στα ράφια σας" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "Δεν βρέθηκαν πιθανά μέλη για \"%(user_query)s\"" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Διαχειριστής" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "Αυτή είναι η αρχική σελίδα ενός βιβλίου. Ας δούμε τι μπορείτε να κάνετε ενώ είστε εδώ!" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "Σελίδα βιβλίου" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "Τέλος Περιήγησης" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "Επόμενο" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "Εδώ μπορείτε να ορίσετε μια κατάσταση ανάγνωσης για αυτό το βιβλίο. Μπορείτε να πατήσετε το κουμπί για να μεταβείτε στο επόμενο στάδιο ή να χρησιμοποιήσετε το αναπτυσσόμενο κουμπί για να επιλέξετε την κατάσταση ανάγνωσης που θέλετε να ορίσετε." + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "Κατάσταση ανάγνωσης" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "Έχετε κάποιο αγαπημένο βιβλίο που ξαναδιαβάζετε κάθε χρόνο; Σας καλύψαμε - μπορείτε να προσθέσετε πολλές ημερομηνίες ανάγνωσης για το ίδιο βιβλίο 😀" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "Μπορεί να υπάρχουν πολλές εκδόσεις ενός βιβλίου, σε διάφορες μορφές ή γλώσσες. Μπορείτε να επιλέξετε ποια έκδοση θέλετε να χρησιμοποιήσετε." + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "Άλλες εκδόσεις" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "Μπορείτε να δημοσιεύσετε μια κριτική, σχόλιο ή παράθεση εδώ." + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "Αφήστε τα σχόλιά σας" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "Αν έχετε διαβάσει αυτό το βιβλίο, μπορείτε να δημοσιεύσετε μια κριτική που περιλαμβάνει μια προαιρετική βαθμολογία" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "Γράψτε μια κριτική" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "Μπορείτε να μοιραστείτε τις σκέψεις σας για αυτό το βιβλίο γενικά με ένα απλό σχόλιο" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "Αναρτήστε ένα σχόλιο" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "Απλά διαβάστε κάποια τέλεια πεζογραφία; Ενημερώστε τον κόσμο μοιράζοντας ένα απόσπασμα!" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "Μοιραστείτε το απόσπασμα" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "Αν η κριτική ή το σχόλιό σας μπορεί να καταστρέψει το βιβλίο για κάποιον που δεν το έχει διαβάσει ακόμα, μπορείτε να κρύψετε τη δημοσίευσή σας πίσω από μια ειδοποίηση spoiler" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "Προειδοποίηση spoiler" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "Επιλέξτε ποιος μπορεί να δει τη δημοσίευσή σας. Το απόρρητο των δημοσιεύσεων μπορεί να είναι Δημόσιο (ο καθένας μπορεί να δει), Μη καταχωρημένο (ο καθένας μπορεί να δει, αλλά δεν εμφανίζεται σε δημόσιες ροές ή σελίδες ανακάλυψης), Ακόλουθοι (μόνο οι ακόλουθοί σας μπορούν να δουν), ή Ιδιωτικό (μόνο εσείς μπορείτε να δείτε)" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "Ιδιωτικότητα δημοσιεύσεων" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "Μερικά ebooks μπορούν να κατέβουν δωρεάν από εξωτερικές πηγές. Θα εμφανιστούν εδώ." + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "Σύνδεσμοι Λήψεων" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "Συνεχίστε την περιοδεία επιλέγοντας Τα βιβλία σας από το αναπτυσσόμενο μενού." + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "Οκ" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "Καλώς ήρθατε στη σελίδα για την ομάδα σας! Εδώ μπορείτε να προσθέσετε και να αφαιρέσετε χρήστες, να δημιουργήσετε λίστες που επιμελούνται οι χρήστες και να επεξεργαστείτε τις λεπτομέρειες της ομάδας." + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "Η ομάδα σας" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "Χρησιμοποιήστε αυτό το πλαίσιο αναζήτησης για να βρείτε χρήστες για να συμμετάσχουν στην ομάδα σας. Αυτή τη στιγμή οι χρήστες πρέπει να είναι μέλη του ίδιου Bookwyrm instance και να προσκληθούν από τον ιδιοκτήτη της ομάδας." + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "Εύρεση Χρήστη" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "Τα μέλη της ομάδας σας θα εμφανίζονται εδώ. Ο ιδιοκτήτης της ομάδας επισημαίνεται με ένα σύμβολο αστεριού." + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "Μέλη ομάδας" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "Εκτός από τη δημιουργία λιστών από τη σελίδα Λίστες, μπορείτε να δημιουργήσετε μια λίστα επιμελημένη από ομάδα εδώ στην αρχική σελίδα της ομάδας. Οποιοδήποτε μέλος της ομάδας μπορεί να δημιουργήσει μια λίστα που επιμελείται τα μέλη της ομάδας." + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "Λίστα ομάδων" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "Συγχαρητήρια, ολοκληρώσατε την περιήγηση! Τώρα γνωρίζετε τα βασικά, αλλά υπάρχουν πολλά ακόμα που μπορείτε να εξερευνήσετε μόνοι σας. Καλή ανάγνωση!" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "Τέλος Περιήγησης" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "Καλώς ορίσατε στο Bookwyrm!

    Θα θέλατε να κάνετε την ξενάγηση για να σας βοηθήσει να ξεκινήσετε;" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "Ξενάγηση" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "Όχι ευχαριστώ" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "Ναι παρακαλώ!" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "Εάν ποτέ αλλάξετε γνώμη, απλά κάντε κλικ στο σύνδεσμο Ξενάγηση για να ξεκινήσετε την περιοδεία σας" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "Αναζητήστε βιβλία, χρήστες ή λίστες χρησιμοποιώντας αυτό το πλαίσιο αναζήτησης." + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "Πλαίσιο αναζήτησης" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "Αναζητήστε αρχεία βιβλίων σαρώνοντας το barcode ISBN χρησιμοποιώντας την κάμερα της συσκευής σας - υπέροχο όταν βρίσκεστε στο βιβλιοπωλείο ή στη βιβλιοθήκη!" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "Ανάγνωση barcode" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Ειδοποιήσεις" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "Δημιουργία νέας λίστας" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "Αναζήτηση ξανά" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "Τα βιβλία σας" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "Μπορείτε να δημιουργήσετε επιπλέον προσαρμοσμένα ράφια για να οργανώσετε τα βιβλία σας. Ένα βιβλίο σε ένα προσαρμοσμένο ράφι μπορεί να είναι σε οποιοδήποτε αριθμό των άλλων ραφιών ταυτόχρονα, συμπεριλαμβανομένου ενός από τα προεπιλεγμένα ράφια κατάσταση ανάγνωσης" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "Ομάδες" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "Ας δημιουργήσουμε μία νέα λίστα!" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "Δημιουργία μίας ομάδα" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "Αποθήκευση της ομάδας σας" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "Προφίλ Χρήστη" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "Πηγή Δεδομένων:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "Goodreads (CSV)" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "Storygraph (CSV)" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "OpenLibrary (CSV)" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "Calibre (CSV)" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "Συμπερίληψη αξιολογήσεων" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "Εισαγωγή" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "Πρόσφατες Εισαγωγές" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "Ημερομηνία Δημιουργίας" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "Αντικείμενα" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "Εισαγωγές" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "Ανανέωση" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "Τίτλος" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "Κλειδί Openlibrary" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "Συντάκτης" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "Ράφι" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "Ξαναδοκίμασε" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "Προφίλ χρήστη" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "Απόρριψη" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Σύνολο" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "Δημιουργία λογαριασμού" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "Συγνώμη! This invite code is no longer valid." + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "Πρόσφατα Βιβλία" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "Σας ευχαριστώ! Your request has been received." + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "Ο λογαριασμός σας" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "Σύνδεση" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "Σύνδεση" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "Επιτυχία! Email address confirmed." + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Όνομα χρήστη:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "Κωδικός πρόσβασης:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "Ξεχάσατε τον κωδικό σας;" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "Επιβεβαίωση κωδικού:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "Σάρωση Barcode" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "κωδικός" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "Πρόταση" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "Επιμελητής" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "Βιβλία Σε Αναμονή" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "Είστε έτοιμοι!" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "%(username)s λέει:" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "Προτείνεται από" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "Απόρριψη" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "Διαγραφή αυτής της λίστας;" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "Επεξεργασία λίστας" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "%(list_name)s, λίστα από %(owner)s" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "στο %(site_name)s" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "Αυτή η λίστα είναι προς το παρόν κενή" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "Επιμέλεια λίστας:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "Κλειστό" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "Μόνο εσείς μπορείτε να προσθέσετε και να αφαιρέσετε βιβλία από τη λίστα" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "Επιμελημένο" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "Ο καθένας μπορεί να προτείνει βιβλία, με την επιφύλαξη της έγκρισής σας" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "Ανοικτό" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "Ο καθένας μπορεί να προσθέσει βιβλία σε αυτή τη λίστα" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "Ομάδα" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "Τα μέλη της ομάδας μπορούν να προσθέσουν και να αφαιρέσουν από αυτή τη λίστα" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "Επιλέξτε ομάδα" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "Επιλέξτε μια ομάδα" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "Δεν έχετε καμία ομάδα ακόμα!" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "Δημιουργία Ομάδας" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "Διαγραφή λίστας" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "Αυτό το βιβλίο είναι ήδη σε αυτή τη λίστα." + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "Προτείνατε με επιτυχία ένα βιβλίο για αυτή τη λίστα!" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "Προσθέσατε με επιτυχία ένα βιβλίο σε αυτή τη λίστα!" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "Αυτή η λίστα είναι προς το παρόν κενή." + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "Επεξεργασία σημειώσεων" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "Προσθήκη σημειώσεων" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "Προστέθηκε από %(username)s" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "Θέση λίστας" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "Αφαίρεση" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "Λίστα ταξινόμησης" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "Κατεύθυνση" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "Προσθήκη βιβλίων" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "Προτείνετε Βιβλία" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "αναζήτηση" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "Εκκαθάριση αναζήτησης" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "Δε βρέθηκαν βιβλία που να ταιριάζουν με το ερώτημα \"%(query)s\"" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "Ενσωμάτωση αυτής της λίστας σε μια ιστοσελίδα" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "Αντιγραφή κώδικα ενσωμάτωσης" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "%(list_name)s, μια λίστα από %(owner)s στις %(site_name)s" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "Αποθήκευση" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "Οι λίστες σας" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "Όλες Οι Λίστες" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "Αποθηκευμένες Λίστες" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "Αποσύνδεση" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s αποδέχθηκε την πρόσκλησή σας για ένταξη στην ομάδα \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s και %(second_user)s αποδέχθηκαν την πρόσκλησή σας να ενταχθούν στην ομάδα \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s και %(other_user_display_count)s άλλοι αποδέχθηκαν την πρόσκλησή σας να ενταχθούν στην ομάδα \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s πρόσθεσε %(book_title)s στη λίστα σας \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s πρότεινε την προσθήκη %(book_title)s στη λίστα σας \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s πρόσθεσε %(book_title)s και %(second_book_title)s στη λίστα σας \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s πρότεινε την προσθήκη %(book_title)s και %(second_book_title)s στη λίστα σας \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "Η εισαγωγή σας ολοκληρώθηκε." + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "Έχετε αφαιρεθεί από την ομάδα \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "%(related_user)s απάντησε στην αξιολόγηση σας %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "Προειδοποίηση περιεχομένου" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "έχει αλλάξει το επίπεδο απορρήτου για %(group_name)s" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "άλλαξε το όνομα %(group_name)s" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "έχει αλλάξει η περιγραφή του %(group_name)s" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "Διαγραφή ειδοποιήσεων" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "Όλα" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "Αναφορές" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "%(account)s δεν είναι έγκυρο όνομα χρήστη" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "Ελέγξτε ότι έχετε το σωστό όνομα χρήστη πριν προσπαθήσετε ξανά" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "%(account)s δεν βρέθηκε ή %(remote_domain)s δεν υποστηρίζει την εύρεση ταυτότητας" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "Έχετε αποκλείσει τον χρήστη %(account)s" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "ο χρήστης %(account)s σας έχει μπλοκάρει" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "Ακολουθείτε ήδη %(account)s" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "Έχετε ήδη ζητήσει να ακολουθήσετε τον %(account)s" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "Ακολουθήστε τον χρήστη %(username)s στο fediverse" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "Ακολουθήστε το %(username)s από άλλο Fediverse λογαριασμό όπως BookWyrm, Mastodon, ή Pleroma." + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "Ακολουθήστε!" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "Ακολουθήστε στο Fediverse" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "Αυτός ο σύνδεσμος ανοίγει σε αναδυόμενο παράθυρο" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "Συνδεθείτε στο %(sitename)s" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "Ακολουθήστε από %(sitename)s" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "Ωχ..." + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "Ας συνδεθούμε πρώτα..." + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "Ακολουθήστε %(username)s" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "Τώρα ακολουθείτε τον %(display_name)s!" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "Αποκλεισμένοι χρήστες" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "Κανένας χρήστης δεν έχει αποκλειστεί προς το παρόν." + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "Αλλαγή Κωδικού πρόσβασης" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "Επιτυχής αλλαγή κωδικού πρόσβασης" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "Τρέχον κωδικός πρόσβασης:" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "Νέος κωδικός πρόσβασης:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "Διαγραφή Λογαριασμού" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "Οριστική διαγραφή λογαριασμού" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "Η διαγραφή του λογαριασμού σας δεν μπορεί να αναιρεθεί. Το όνομα χρήστη δεν θα είναι διαθέσιμο για εγγραφή στο μέλλον." + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "Επεξεργασία προφίλ" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "Προφίλ" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "Προβολή" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "Ιδιωτικότητα" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "Εμφάνιση προτεινόμενων χρηστών" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "Εμφάνιση αυτού του λογαριασμού σε προτεινόμενους χρήστες" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Ο λογαριασμός σας θα εμφανίζεται στον κατάλογο, και μπορεί να συνιστάται σε άλλους χρήστες του BookWyrm." + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "Προτιμώμενη Ζώνη Ώρας: " + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "Θέμα:" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "Χειροκίνητη έγκριση ακολούθων" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "Απόκρυψη ακολούθων στο προφίλ" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "Προεπιλεγμένο απόρρητο δημοσίευσης:" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "Λήψη αρχείου" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "Λογαριασμός" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "Δεδομένα" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "Σχέσεις" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Όνομα λογαριασμού:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Κωδικός:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "Ολοκλήρωση \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "Έναρξη \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "Διακοπή Ανάγνωσης \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "Θέλετε να διαβάσετε \"%(book_title)s\"" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "Διαγραφή αυτών των ημερομηνιών ανάγνωσης;" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "Διαγράφετε αυτή την ανάγνωση και τις %(count)s σχετικές ενημερώσεις προόδου." + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "Ενημέρωση ημερομηνιών ανάγνωσης για \"%(title)s\"" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "Έναρξη ανάγνωσης" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "Πρόοδος" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "Ολοκλήρωση ανάγνωσης" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "Ενημερώσεις Προόδου:" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "ολοκλήρωση" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "διακοπή" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "Εμφάνιση όλων των ενημερώσεων" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "Διαγραφή αυτής της ενημέρωσης προόδου" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "ξεκίνημα" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "Επεξεργασία ημερομηνιών ανάγνωσης" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "Διαγραφή αυτών των ημερομηνιών ανάγνωσης" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "Προσθήκη ημερομηνιών ανάγνωσης για το \"%(title)s\"" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "Αναφορά" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "\n" +" Σάρωση Barcode\n" +" " + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "Αίτηση κάμερας..." + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "Παραχώρηση πρόσβασης στην κάμερα για σάρωση του barcode ενός βιβλίου." + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "Αδυναμία πρόσβασης στην κάμερα" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "Σάρωση..." + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "Σάρωση ISBN" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "Αναζήτηση βιβλίου:" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "Αποτελέσματα από" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "Εισαγωγή βιβλίου" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "Φόρτωση αποτελεσμάτων από άλλους καταλόγους" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "Χειροκίνητη προσθήκη βιβλίου" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "Συνδεθείτε για να εισαγάγετε ή να προσθέσετε βιβλία." + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "Κριτήρια αναζήτησης" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "Τύπος αναζήτησης" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "Χρήστες" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "Δεν βρέθηκαν αποτελέσματα για \"%(query)s\"" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "%(result_count)s αποτέλεσμα βρέθηκε" +msgstr[1] "%(result_count)s αποτελέσματα βρέθηκαν" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "Ανακοίνωση" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "Επεξεργασία" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "Ανακοινώσεις" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "Ορατό:" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "Αληθές" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "Ψευδές" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "Ημερομηνία έναρξης:" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "Ημερομηνία λήξης:" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "Ενεργό:" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "Δημιουργία Ανακοίνωσης" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "Ημερομηνία προστέθηκε" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "Ημερομηνία έναρξης" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "Ημερομηνία λήξης" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "ενεργός" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "ανενεργός" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "Δε βρέθηκαν ανακοινώσεις" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "Επεξεργασία ανακοίνωσης" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "Περιεχόμενο ανακοίνωσης" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "Λεπτομέρειες:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "Ημερομηνία εκδήλωσης:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "Ρυθμίσεις Προβολής" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "Χρώμα:" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "Κανόνες αυτόματης διαχείρισης" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "Οι κανόνες αυτόματης διαχείρισης θα δημιουργούν αναφορές για οποιονδήποτε τοπικό χρήστη ή κατάσταση με πεδία που ταιριάζουν με την παρεχόμενη συμβολοσειρά." + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "Χρήστες ή καταστάσεις που έχουν ήδη αναφερθεί (ανεξάρτητα από το αν η έκθεση έχει επιλυθεί) δεν θα σημαδεύονται." + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "Χρονοδιάγραμμα:" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "Τελευταία εκτέλεση:" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "Ενεργό:" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "Διαγραφή χρονοδιαγράμματος" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "Έναρξη τώρα" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "Η τελευταία ημερομηνία εκτέλεσης δεν θα ενημερωθεί" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "Προγραμματισμός σάρωσης" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "Επιτυχής προσθήκη κανόνα" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "Προσθήκη κανόνα" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "Ταίριασμα συμβολοσειράς" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "Αναφορά χρηστών" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "Αναφορά κατάστασης" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "Προσθήκη κανόνα" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "Τρέχων Κανόνες" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "Εμφάνιση κανόνων" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "Αφαίρεση κανόνα" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "Εικόνες" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "E-mail" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "ID" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "Προτεραιότητα" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "Σφάλματα" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Λόγος απενεργοποίησης:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "Πίνακας Ελέγχου" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "Σύνολο χρηστών" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "Ενεργοί αυτόν το μήνα" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "Έργα" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "Ημέρες" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "Εβδομάδες" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "Επιλογές" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "Αποστολέας email:" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "Οικοδεσπότης:" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "Θήρα:" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "Χρήση TLS:" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "Χρήση SSL:" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "Λογισμικό:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "Έκδοση:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "Ανανέωση δεδομένων" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Λεπτομέρειες" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "Δραστηριότητα" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Χρήστες:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Προβολή όλων" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "Αναφορές:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "Σημειώσεις" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "Επιτυχία!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Απέτυχε:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "Λογισμικό" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Ολοκληρωμένα" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "Χρήστης" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "Απάντηση" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "Ενέργεια" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "Έγινε αποδοχή" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "Αποστολή πρόσκλησης" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "Παράβλεψη" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "Λήξη:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "Χρήση ορίου:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "Δημιουργία Πρόσκλησης" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "Λήγει" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "Μέγιστες χρήσεις" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "Προσθήκη διεύθυνσης IP" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "Διεύθυνση IP:" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "Διεύθυνση" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "Διαχείριση" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "Διαχείριση Χρηστών" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "Συντονισμός" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "Αναφορές" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "Σύστημα" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "Ρυθμίσεις Ιστοσελίδας" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "Εγγραφή" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "Θέματα" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "Τα link domains πρέπει να εγκριθούν πριν εμφανιστούν σε σελίδες βιβλίων. Βεβαιωθείτε ότι οι τομείς δεν φιλοξενούν spam, κακόβουλο κώδικα, ή παραπλανητικούς συνδέσμους πριν την έγκριση." + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "Ορισμός ονόματος προβολής" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "Προβολή συνδέσμων" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "Δεν υπάρχουν τομείς που έχουν εγκριθεί" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "Κανένας τομέας δεν εκκρεμεί" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "Κανένας τομέας δεν έχει αποκλειστεί" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "Δεν υπάρχουν διαθέσιμοι σύνδεσμοι για αυτόν τον τομέα." + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "Οι ρυθμίσεις αποθηκεύτηκαν" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "Δεν είναι δυνατή η αποθήκευση των ρυθμίσεων" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "Ερώτηση:" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "Επιστροφή στις αναφορές" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "Αναφορά μηνυμάτων" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "Ενημερώστε την αναφορά σας:" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "Κατάσταση αναφοράς" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "Η κατάσταση έχει διαγραφεί" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "Σύνδεσμοι που αναφέρονται" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "Αναφορά #%(report_id)s: Κατάσταση που δημοσιεύτηκε από @%(username)s" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "Αναφορά #%(report_id)s: Σύνδεσμος που προστέθηκε από @%(username)s" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "Αναφορά #%(report_id)s: Σύνδεσμος τομέα" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "Αναφορά #%(report_id)s: Χρήστης @%(username)s" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "Αποκλεισμός τομέα" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "Δεν υπάρχουν σημειώσεις" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "Αναφέρθηκε από @%(username)s" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "Άνοιγμα ξανά" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "Επίλυση" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Αναφορές: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Αναφορές: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "Άνοιγμα" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "Επιλυμένο" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "Δεν βρέθηκαν αναφορές." + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "Πληροφορίες του instance" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "Περιεχόμενο Υποσέλιδου" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "Όνομα instance:" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "Tagline:" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "Περιγραφή instance:" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "Σύντομη περιγραφή:" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "Χρησιμοποιείται όταν γίνεται προεπισκόπηση στο instance στο joinbookwyrm.com. Δεν υποστηρίζει HTML ή Markdown." + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "Κώδικας Δεοντολογίας:" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "Πολιτική Απορρήτου:" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "Λογότυπο:" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "Μικρό λογότυπο:" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "Προεπιλεγμένο Θέμα:" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "Σύνδεσμος υποστήριξης:" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "Τίτλος υποστήριξης:" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "Email διαχειριστή:" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "Επιπρόσθετες πληροφορίες:" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "Πως να προσθέσετε ένα θέμα" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "Προσθήκη θέμα" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "Όνομα θέματος" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "Αρχείο" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "Αφαίρεση θέματος" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "Μόνιμη διαγραφή χρήστη" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "Ο κωδικός πρόσβασής σας:" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "Χρήστες: %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "Διαγραφή χρηστών" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "Όνομα Χρήστη" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "Ημερομηνία Προσθήκης" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "Τελευταία δραστηριότητα" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "Απομακρυσμένο instance" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "Μη ορισμένο" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "Προβολή προφίλ χρήστη" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "Μετάβαση στον διαχειριστή χρήστη" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "Τοπικό" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "Απομακρυσμένo" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "Στοιχεία χρήστη" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "Email:" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "(Προβολή αναφορών)" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "Ημερομηνία Προσθήκης:" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "Τελευταία δραστηριότητα στις:" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "Χειροκίνητη έγκριση ακολούθων:" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "Λεπτομέρειες instance" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "Εμφάνιση instance" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "Οριστική διαγραφή" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "Δημιούργηστε τον λογαριασμό σου" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "Το domain σας φαίνεται να είναι λανθασμένο. Δεν πρέπει να περιλαμβάνει πρωτόκολλο ή καθέτους." + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "Ρυθμίσεις" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "Εγκατάσταση του BookWyrm" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "Χρειάζεστε βοήθεια;" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "Δημιουργία ραφιού" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "Επεξεργασία Ραφιού" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "Όλα τα βιβλία" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "Εισαγωγή βιβλίων" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "Επεξεργασία ραφιού" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "Διαγραφή ραφιού" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "Αυτό το ράφι είναι άδειο." + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "Πρόσκληση" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "Πρόοδος:" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "σελίδες" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "της εκατό" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "Απάντηση" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "Περιεχόμενο" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "Συμπερίληψη ειδοποίησης spoiler" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "Σχόλιο:" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "Στη σελίδα:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "Φίλτρα" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "Εκκαθάριση φίλτρων" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "Εφαρμογή φίλτρων" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "Αφαίρεση ακολούθησης" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "Αποδοχή" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "Τεκμηρίωση" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "βιβλία" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "Επιτυχία!" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "αελίδα %(page)s" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "Νεότερα" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "Προηγούμενο" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "Παλαιότερα" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "Τελειώστε το «%(book_title)s»" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "(Προαιρετικό)" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "Αρχίστε το «%(book_title)s»" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "Σταματήστε να Διαβάζετε το «%(book_title)s»" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "Εγγραφείτε" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "Μετακίνηση βιβλίου" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "Περισσότερες ράφια" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "Περισσότερες επιλογές" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "Περισσότερα" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "Λιγότερα" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "Διαγραμμένος" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "Αδρανής" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "Επιβεβαίωση και Σύνδεση" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "Τα βιβλία του/ης %(username)s" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "Επεξεργασία Στόχου" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "Οι Ομάδες σας" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "Δημιουργία λίστας" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "Επεξεργασία προφίλ" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "Προβολή όλων των βιβλίων" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "Τροφοδοσία RSS" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/en_Oulipo/LC_MESSAGES/django.mo b/locale/en_Oulipo/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..c750892634 Binary files /dev/null and b/locale/en_Oulipo/LC_MESSAGES/django.mo differ diff --git a/locale/en_Oulipo/LC_MESSAGES/django.po b/locale/en_Oulipo/LC_MESSAGES/django.po new file mode 100644 index 0000000000..42e44cdaae --- /dev/null +++ b/locale/en_Oulipo/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Oulipo\n" +"Language: en_Oulipo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ou\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "1 Day" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "7 Days" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "1 Month" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "No cut-off" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "No limit" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Alias and password don't match" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "An account is using this mail." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "List Sorting" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Rating" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Upward" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Downward" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Waiting" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Discard of own account" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Admin moratorium" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Admin discard" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Domain block" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Audiobook" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "Digital Book" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Graphic story" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Hardback" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Softback" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Global" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Has Block" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s is not a valid alias" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "alias" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "An account is using this alias." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Could not load book" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Could not find a match for book" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Rundowns" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Community Posts" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Community" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Book Posts" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Books" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Not Found" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Not found!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Oops!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "That didn't work" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Sorry, that didn't work." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Join in at %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Admin" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Bylaws" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "About %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Privacy Policy" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "by" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Modify Author" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Also known as:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Born:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Books by %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Modify Author:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Put in" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Last modification:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Last modification by:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Additional Info" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Split up with commas" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Bio:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Born:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Author Associations" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Confirm" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Abort" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Confirm" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Modify Book" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Could not load illustration" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s rundown)" +msgstr[1] "(%(review_count)s rundowns)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Add About" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "About:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "A variant of this book is on your %(shelf_name)s stack." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Your book activity" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Add activity chronology" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "No activity for this book." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Your rundowns" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Your annotations" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Your quotations" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Topics" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Locations" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Lists" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Add to list" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Add" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLC lookup:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Add front illustration" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Upload front illustration" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Dismiss" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Modify \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Add Book" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Confirm Book Info" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "This is an unknown author" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Adding an author: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Is this a variant of a known work?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "This is an unknown work" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Back" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Compilation:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Compilation ordinal:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Cants" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Publication" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Publication company:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Orignal publication:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Publication:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Discard %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Author landing for %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Front illustration" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Physical Information" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Format info:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Pagination:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Book Lookups" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Variants of %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Cant" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Look within variants" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s pagination" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s pagination" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s cants" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Put out in %(date)s by %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Put out by %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Put out in %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Confirm mail" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Confirm your mail location" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "A confirmation link is going out to your mail location" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Sorry! That confirmation string is invalid." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Confirmation string:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Can't find your confirmation?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Post confirmation link again" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "Mail location:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Post link again" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Local community" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Global community" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Accounts" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Publically show your account." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "You can opt-out in your configuration options." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Dismiss" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Sort" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Last around" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "follow you follow" +msgstr[1] " follows you follow" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "book in your stacks" +msgstr[1] "books in your stacks" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "last around" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Accounts" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "BookWyrm accounts" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "All known accounts" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "Find out what's going on in %(site_name)s's local community" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Go to status" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "A final task for you to join %(site_name)s! Confirm your mail location by clicking this link:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Confirm Mail" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Or add this string: \"%(confirmation_code)s\" at login." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "Confirm your mail" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Or add this string: \"%(confirmation_code)s\" at login." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Hi," + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "Mail configuration" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "An invitation to join %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Join Now" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "An invitation to join %(site_name)s! Click this link to start making your account:" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "Forgot your %(site_name)s password? Click this link to fix your password and log in:" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Forgot Password" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "If you didn't want to do this, just carry on with your day." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Forgot your %(site_name)s password" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Contact admin" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "All communications" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "No communications right now." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Nothing much going on right now! Try following an account to start things moving." + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s Book Goal" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "You can modify your goal in your configuration options." + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Activity" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Your Books" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "No found books right now! Try looking up a book to start things moving" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Who to follow" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Don't show accounts to follow" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Go to account list" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "Possibly Tomorrow" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "On Your Nightstand" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Put Away" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "What's on your nightstand right now?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Look for a book" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "No books found for \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "You can add books with a %(site_name)s account." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Look up" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Your Books" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Popular on %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "No books found" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Confirm & go on" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Howdy" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Start building your account." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Add info about you" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Add books" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Find folks you know" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Skip this for now" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Finish" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Display alias" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Summary:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "A bit about you" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Avatar:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Manually confirm follows:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Show this account publicly:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Look for an account" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "Nobody found matching \"%(query)s\"" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "You can't undo this action" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Discard" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Add List" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s follow you follow" +msgstr[1] "%(mutuals)s follows you follow" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s book in your stacks" +msgstr[1] "%(shared_books)s books in your stacks" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Notifications" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "Your books" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "Account Info" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "Goal" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "Data origin" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "Data upload" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "Import your rankings" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "Import" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "Your Imports" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "No imports" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "Import Status" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "Import start:" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "Author" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "Book" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "Import" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Posts" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "Join" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "Sorry! This invitation isn't valid." + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Small and Local" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "Kind" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "Against Corporations" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "Join %(name)s" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "Ask for an Invitation" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "%(name)s is not taking on accounts right now" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "Thank you!" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "Your Account" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "Log in" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Alias" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "Additional information" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "A link to fix your password will go to your mail" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "Forogt password" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "%(site_name)s lookup" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "Main navigation" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "password" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "Join" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "Could not post status" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "Proposals" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "Un-mark" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "Curation by %(username)s" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "List by %(username)s" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "Book Proposals" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "Nothing to do!" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "Discard" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "Discard this list?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "Modify List" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "Nothing on this list right now" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "List curation:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "Only you can modify what's on this list" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "Anybody" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "Discard list" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +msgid "Notes:" +msgstr "Annotations" + +#: 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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "Your proposal is wating on approval" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "Your proposal is now on this list!" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "Confirm" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "Discard" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "No books found matching \"%(query)s\"" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "Log out" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "Your import is at its finish." + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "Discard notifications" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "Tags" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "All caught up!" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "Account Blocks" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "No blocks right now" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "Modify Password" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "Discard Account" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "You cannot undo this action. Nobody can add an account with your alias." + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "Account Configuration" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "Account Info" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "Clock configuration" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "Post privacy" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "Accounts you know" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "Modify activity chronology" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "Load books from catalogs" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "Accounts" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "Nothing found for \"%(query)s\"" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "Community Broadcast" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "Modify" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "Community Broadcasts" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "Visibility" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "Start" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "Finish" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "Add Broadcast" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "Start" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "Finish" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "No broadcasts found" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "Modify Broadcast" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "Chronology:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "Total accounts" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "Activity" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "Signup activity" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "Signups" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "Posts" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "%(display_count)s asking for invitations" +msgstr[1] "%(display_count)s asking for invitations" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "Mail Blocklist" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "Anybody trying to sign up with mail from this domain will not add an account, but it will look as if it did add an account during signup." + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "%(display_count)s account" +msgstr[1] "%(display_count)s accounts" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "No domain blocks right now" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "Program" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Info" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Accounts" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Look at all" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "Flags" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Follows by us" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Blocks by us:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "Annotations" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "No annotations" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "Program" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "Invitations" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "Show full" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "Configuration" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "Import Books" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "Discard status" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "Star status" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "boosts" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "Additional options" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "Switch to this variant" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "Sort upward" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "Sort downward" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "Show full" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "Show partial" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s Book Count" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "Modify Goal" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s has no a goal for %(year)s." + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "Asking to Follow" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "Add list" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "%(username)s has no follows" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s isn't following any accounts" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "Modify account info" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "Go to all %(size)s" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "Go to all books" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "Account Activity" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "RSS" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "No activity so far!" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "%(mutuals_display)s follow you follow" +msgstr[1] "%(mutuals_display)s follows you follow" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "No follows you follow" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index 61add13ef8..f894bbe7b5 100644 --- a/locale/en_US/LC_MESSAGES/django.po +++ b/locale/en_US/LC_MESSAGES/django.po @@ -1,4 +1,4 @@ -# Stub English-language translation file +# Stub English-language trnaslation file # Copyright (C) 2021 Mouse Reeve # This file is distributed under the same license as the BookWyrm package. # Mouse Reeve , 2021 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-25 23:12+0000\n" +"POT-Creation-Date: 2025-10-13 22:43+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -34,64 +34,63 @@ msgstr "" msgid "Does Not Expire" msgstr "" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "" -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "" -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "" -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "" -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "" -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "" -#: bookwyrm/forms/links.py:37 +#: bookwyrm/forms/links.py:36 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "" -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" @@ -103,8 +102,8 @@ msgstr "" msgid "Book Title" msgstr "" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:159 -#: bookwyrm/templates/shelf/shelf.html:191 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "" @@ -146,8 +145,8 @@ msgstr "" msgid "Automatically generated report" msgstr "" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -173,33 +172,101 @@ msgstr "" msgid "Domain block" msgstr "" -#: bookwyrm/models/book.py:324 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "" -#: bookwyrm/models/book.py:325 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "" -#: bookwyrm/models/book.py:326 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "" -#: bookwyrm/models/book.py:327 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "" -#: bookwyrm/models/book.py:328 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -217,16 +284,16 @@ msgstr "" msgid "%(value)s is not a valid username" msgstr "" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "" -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -234,7 +301,7 @@ msgstr "" msgid "Public" msgstr "" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -242,7 +309,7 @@ msgstr "" msgid "Unlisted" msgstr "" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -251,7 +318,7 @@ msgstr "" msgid "Followers" msgstr "" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -260,66 +327,65 @@ msgstr "" msgid "Private" msgstr "" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:121 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 #: bookwyrm/templates/settings/imports/imports.html:180 #: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:119 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "" @@ -364,154 +430,159 @@ msgstr "" msgid "Deleted item" msgstr "" -#: bookwyrm/models/status.py:186 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 #, python-format msgid "%(display_name)s's status" msgstr "" -#: bookwyrm/models/status.py:361 +#: bookwyrm/models/status.py:367 #, python-format msgid "%(display_name)s's comment on %(book_title)s" msgstr "" -#: bookwyrm/models/status.py:412 +#: bookwyrm/models/status.py:418 #, python-format msgid "%(display_name)s's quote from %(book_title)s" msgstr "" -#: bookwyrm/models/status.py:448 +#: bookwyrm/models/status.py:454 #, python-format msgid "%(display_name)s's review of %(book_title)s" msgstr "" -#: bookwyrm/models/status.py:479 +#: bookwyrm/models/status.py:486 #, python-format msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" msgstr[0] "" msgstr[1] "" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:312 +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:336 msgid "Reviews" msgstr "" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "" -#: bookwyrm/settings.py:236 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "" -#: bookwyrm/settings.py:236 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "" -#: bookwyrm/settings.py:237 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "" -#: bookwyrm/settings.py:237 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 #: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:315 msgid "English" msgstr "" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:323 msgid "한국어 (Korean)" msgstr "" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "" -#: bookwyrm/settings.py:334 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:335 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "" -#: bookwyrm/settings.py:336 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "" -#: bookwyrm/settings.py:337 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "" -#: bookwyrm/settings.py:338 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "" @@ -646,7 +717,7 @@ msgid "Statuses posted:" msgstr "" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "" @@ -756,7 +827,7 @@ msgstr "" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/book/book.html:73 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -836,44 +907,48 @@ msgid "Wikipedia" msgstr "" #: bookwyrm/templates/author/author.html:79 -msgid "Website" +msgid "View on Wikidata" msgstr "" #: bookwyrm/templates/author/author.html:87 -msgid "View ISNI record" +msgid "Website" msgstr "" #: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:180 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:183 msgid "View on ISFDB" msgstr "" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/book.html:150 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:151 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:154 msgid "View on OpenLibrary" msgstr "" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:165 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:168 msgid "View on Inventaire" msgstr "" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "" @@ -910,8 +985,8 @@ msgid "Name:" msgstr "" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "" @@ -948,7 +1023,7 @@ msgid "Openlibrary key:" msgstr "" #: bookwyrm/templates/author/edit_author.html:90 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "" @@ -957,7 +1032,7 @@ msgid "Librarything key:" msgstr "" #: bookwyrm/templates/author/edit_author.html:104 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "" @@ -970,7 +1045,7 @@ msgid "ISNI:" msgstr "" #: bookwyrm/templates/author/edit_author.html:128 -#: bookwyrm/templates/book/book.html:225 +#: bookwyrm/templates/book/book.html:249 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -978,7 +1053,7 @@ msgstr "" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -994,12 +1069,12 @@ msgstr "" #: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:226 +#: bookwyrm/templates/book/book.html:250 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -1009,6 +1084,7 @@ msgstr "" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -1026,100 +1102,104 @@ msgstr "" #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "" -#: bookwyrm/templates/book/book.html:21 +#: bookwyrm/templates/book/book.html:24 msgid "Unable to connect to remote source." msgstr "" -#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +#: bookwyrm/templates/book/book.html:81 bookwyrm/templates/book/book.html:82 msgid "Edit Book" msgstr "" -#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +#: bookwyrm/templates/book/book.html:107 bookwyrm/templates/book/book.html:110 msgid "Click to add cover" msgstr "" -#: bookwyrm/templates/book/book.html:113 +#: bookwyrm/templates/book/book.html:116 msgid "Failed to load cover" msgstr "" -#: bookwyrm/templates/book/book.html:124 +#: bookwyrm/templates/book/book.html:127 msgid "Click to enlarge" msgstr "" -#: bookwyrm/templates/book/book.html:201 +#: bookwyrm/templates/book/book.html:190 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:222 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/book/book.html:214 +#: bookwyrm/templates/book/book.html:238 msgid "Add Description" msgstr "" -#: bookwyrm/templates/book/book.html:221 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:245 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "" -#: bookwyrm/templates/book/book.html:237 +#: bookwyrm/templates/book/book.html:261 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/book/book.html:251 +#: bookwyrm/templates/book/book.html:275 msgid "You have shelved this edition in:" msgstr "" -#: bookwyrm/templates/book/book.html:266 +#: bookwyrm/templates/book/book.html:290 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "" -#: bookwyrm/templates/book/book.html:277 +#: bookwyrm/templates/book/book.html:301 msgid "Your reading activity" msgstr "" -#: bookwyrm/templates/book/book.html:283 +#: bookwyrm/templates/book/book.html:307 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "" -#: bookwyrm/templates/book/book.html:291 +#: bookwyrm/templates/book/book.html:315 msgid "You don't have any reading activity for this book." msgstr "" -#: bookwyrm/templates/book/book.html:317 +#: bookwyrm/templates/book/book.html:341 msgid "Your reviews" msgstr "" -#: bookwyrm/templates/book/book.html:323 +#: bookwyrm/templates/book/book.html:347 msgid "Your comments" msgstr "" -#: bookwyrm/templates/book/book.html:329 +#: bookwyrm/templates/book/book.html:353 msgid "Your quotes" msgstr "" -#: bookwyrm/templates/book/book.html:365 +#: bookwyrm/templates/book/book.html:389 msgid "Subjects" msgstr "" -#: bookwyrm/templates/book/book.html:377 +#: bookwyrm/templates/book/book.html:401 msgid "Places" msgstr "" -#: bookwyrm/templates/book/book.html:388 +#: bookwyrm/templates/book/book.html:412 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1134,11 +1214,11 @@ msgstr "" msgid "Lists" msgstr "" -#: bookwyrm/templates/book/book.html:400 +#: bookwyrm/templates/book/book.html:424 msgid "Add to list" msgstr "" -#: bookwyrm/templates/book/book.html:410 +#: bookwyrm/templates/book/book.html:434 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1161,40 +1241,50 @@ msgid "Copied ISBN!" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "" @@ -1321,127 +1411,129 @@ msgstr "" msgid "Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "" @@ -1469,7 +1561,7 @@ msgid "Any" msgstr "" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "" @@ -1530,11 +1622,14 @@ msgid "Domain" msgstr "" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 #: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 @@ -1594,8 +1689,8 @@ msgstr "" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "" @@ -1651,7 +1746,19 @@ msgstr "" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "" -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "" @@ -1760,12 +1867,12 @@ msgstr "" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1886,7 +1993,7 @@ msgstr "" #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" msgstr "" #: bookwyrm/templates/email/html_layout.html:23 @@ -1905,7 +2012,7 @@ msgstr "" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." +msgid "Learn more about %(site_name)s." msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 @@ -2082,19 +2189,19 @@ msgid "Add to your books" msgstr "" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2103,7 +2210,7 @@ msgid "Read" msgstr "" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "" @@ -2788,7 +2895,7 @@ msgstr "" #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 -#: bookwyrm/templates/preferences/export-user.html:36 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "" @@ -2903,11 +3010,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "" @@ -2933,69 +3042,81 @@ msgid "OpenLibrary (CSV)" msgstr "" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "" -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "" -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "" -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 #: bookwyrm/templates/settings/imports/imports.html:202 #: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "" -#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import.html:146 #: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:96 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "" @@ -3019,18 +3140,22 @@ msgid "Imports" msgstr "" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "" #: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 #: bookwyrm/templates/settings/imports/imports.html:243 #: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" @@ -3049,6 +3174,7 @@ msgid "Review items" msgstr "" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3056,6 +3182,7 @@ msgstr[0] "" msgstr[1] "" #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "" @@ -3064,12 +3191,14 @@ msgid "Row" msgstr "" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:173 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "" @@ -3078,8 +3207,8 @@ msgid "Openlibrary key" msgstr "" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:152 -#: bookwyrm/templates/shelf/shelf.html:176 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "" @@ -3087,13 +3216,9 @@ msgstr "" msgid "Shelf" msgstr "" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "" @@ -3111,6 +3236,8 @@ msgid "View imported review" msgstr "" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "" @@ -3146,119 +3273,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/preferences/export-user.html:20 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 -#: bookwyrm/templates/preferences/export-user.html:22 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 -#: bookwyrm/templates/preferences/export-user.html:23 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "" -#: bookwyrm/templates/import/import_user.html:133 -#: bookwyrm/templates/preferences/export-user.html:24 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 -#: bookwyrm/templates/preferences/export-user.html:25 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3282,15 +3409,18 @@ msgid "Reject" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 #: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "" @@ -3299,17 +3429,92 @@ msgid "The book has been added to the instance since this import" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "" #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "" +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 #: bookwyrm/templates/landing/login.html:50 @@ -3384,7 +3589,7 @@ msgstr "" #: bookwyrm/templates/landing/password_reset.html:26 #: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "" @@ -3647,6 +3852,8 @@ msgid "List position" msgstr "" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "" @@ -3971,7 +4178,7 @@ msgstr "" #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "" msgstr[1] "" @@ -4142,21 +4349,21 @@ msgstr "" msgid "You have already requested to follow %(account)s" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "" @@ -4197,120 +4404,52 @@ msgstr "" msgid "Follow %(username)s" msgstr "" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." msgstr "" -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." msgstr "" -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:25 -msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:30 -#: bookwyrm/templates/preferences/move_user.html:35 -msgid "Confirm your password:" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:39 -#: bookwyrm/templates/preferences/layout.html:28 -msgid "Aliases" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:49 -msgid "Remove alias" +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" msgstr "" #: bookwyrm/templates/preferences/blocks.html:4 @@ -4370,6 +4509,12 @@ msgstr "" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "" +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "" @@ -4399,12 +4544,12 @@ msgstr "" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "" @@ -4413,136 +4558,158 @@ msgid "Show reading goal prompt in feed" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:75 -msgid "Show suggested users" +msgid "Show ratings" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:18 +#: bookwyrm/templates/preferences/export-user.html:19 msgid "Your file will include:" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/preferences/export-user.html:22 msgid "Most user settings" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:26 -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "" - -#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/preferences/export-user.html:28 msgid "Your own lists and saved lists" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:28 +#: bookwyrm/templates/preferences/export-user.html:29 msgid "Which users you follow and block" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:32 +#: bookwyrm/templates/preferences/export-user.html:33 msgid "Your file will not include:" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:34 +#: bookwyrm/templates/preferences/export-user.html:35 msgid "Direct messages" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:35 +#: bookwyrm/templates/preferences/export-user.html:36 msgid "Replies to your statuses" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/preferences/export-user.html:38 msgid "Favorites" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:41 +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:44 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:49 +#: bookwyrm/templates/preferences/export-user.html:50 msgid "New user exports are currently disabled." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:53 +#: bookwyrm/templates/preferences/export-user.html:54 #, python-format msgid "User exports settings can be changed from the Imports page in the Admin dashboard." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 -msgid "Create user export file" +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." msgstr "" #: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:84 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:90 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:134 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4561,6 +4728,10 @@ msgstr "" msgid "Account" msgstr "" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4597,6 +4768,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4642,6 +4931,7 @@ msgstr "" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "" @@ -4809,7 +5099,7 @@ msgstr "" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "" @@ -4902,7 +5192,6 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "" @@ -4915,35 +5204,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "" #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "" @@ -4988,6 +5285,7 @@ msgstr "" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "" @@ -5016,6 +5314,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -5074,6 +5373,8 @@ msgid "Run time" msgstr "" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "" @@ -5106,6 +5407,66 @@ msgstr "" msgid "Errors" msgstr "" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5163,10 +5524,6 @@ msgstr "" msgid "Statuses posted" msgstr "" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "" - #: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" msgstr "" @@ -5268,7 +5625,7 @@ msgid "Successfully sent test email." msgstr "" #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "" @@ -5316,15 +5673,6 @@ msgstr "" msgid "Add instance" msgstr "" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5400,12 +5748,6 @@ msgstr "" msgid "No notes" msgstr "" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "" @@ -5458,6 +5800,49 @@ msgstr "" msgid "No instances found" msgstr "" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5565,7 +5950,7 @@ msgid "Users are currently unable to start new user exports. This is the default msgstr "" #: bookwyrm/templates/settings/imports/imports.html:161 -msgid "It is not currently possible to provide user exports when using s3 storage. The BookWyrm development team are working on a fix for this." +msgid "It is not currently possible to provide user exports when using Azure storage." msgstr "" #: bookwyrm/templates/settings/imports/imports.html:167 @@ -5576,11 +5961,6 @@ msgstr "" msgid "Book Imports" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:184 -#: bookwyrm/templates/settings/imports/imports.html:274 -msgid "Completed" -msgstr "" - #: bookwyrm/templates/settings/imports/imports.html:198 #: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" @@ -5604,10 +5984,6 @@ msgstr "" msgid "No matching imports found." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:264 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5771,6 +6147,10 @@ msgstr "" msgid "Reports" msgstr "" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5781,28 +6161,26 @@ msgstr "" msgid "System" msgstr "" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" msgstr "" -#: bookwyrm/templates/settings/layout.html:90 -#: bookwyrm/templates/settings/schedules.html:7 -#: bookwyrm/templates/settings/schedules.html:11 -msgid "Scheduled tasks" +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" msgstr "" -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "" -#: bookwyrm/templates/settings/layout.html:107 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "" -#: bookwyrm/templates/settings/layout.html:113 -#: bookwyrm/templates/settings/layout.html:116 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5810,7 +6188,7 @@ msgstr "" msgid "Registration" msgstr "" -#: bookwyrm/templates/settings/layout.html:122 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -6016,6 +6394,11 @@ msgstr "" msgid "No reports found." msgstr "" +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + #: bookwyrm/templates/settings/schedules.html:17 #: bookwyrm/templates/settings/schedules.html:101 msgid "Tasks" @@ -6311,10 +6694,6 @@ msgstr "" msgid "Discoverable:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "" @@ -6408,7 +6787,7 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "" #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 @@ -6419,39 +6798,39 @@ msgstr "" msgid "Instance domain:" msgstr "" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "" -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "" -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "" @@ -6468,7 +6847,7 @@ msgid "Need help?" msgstr "" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "" @@ -6476,61 +6855,61 @@ msgstr "" msgid "Edit Shelf" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:59 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/shelf/shelf.html:105 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:119 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:127 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:181 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:184 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:157 -#: bookwyrm/templates/shelf/shelf.html:187 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:157 -#: bookwyrm/templates/shelf/shelf.html:187 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:216 +#: bookwyrm/templates/shelf/shelf.html:221 #, python-format msgid "We couldn't find any books that matched %(shelves_filter_query)s" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:220 +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "" @@ -6643,10 +7022,6 @@ msgstr "" msgid "Comment:" msgstr "" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "" @@ -6717,10 +7092,6 @@ msgstr "" msgid "Follow @%(username)s" msgstr "" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "" @@ -6753,7 +7124,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "" #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "" @@ -6765,7 +7136,7 @@ msgstr[0] "" msgstr[1] "" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6994,6 +7365,10 @@ msgstr "" msgid "Finish reading" msgstr "" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "" @@ -7349,7 +7724,8 @@ msgid "View profile and more" msgstr "" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 @@ -7369,30 +7745,10 @@ msgstr[1] "" msgid "%(title)s: %(subtitle)s" msgstr "" -#: bookwyrm/templatetags/utilities.py:129 +#: bookwyrm/templatetags/utilities.py:133 msgid "a new user account" msgstr "" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "" - #: bookwyrm/views/updates.py:45 #, python-format msgid "Load %(count)d unread status" diff --git a/locale/eo_UY/LC_MESSAGES/django.mo b/locale/eo_UY/LC_MESSAGES/django.mo index f97f6783c3..d96f99f60c 100644 Binary files a/locale/eo_UY/LC_MESSAGES/django.mo and b/locale/eo_UY/LC_MESSAGES/django.mo differ diff --git a/locale/eo_UY/LC_MESSAGES/django.po b/locale/eo_UY/LC_MESSAGES/django.po index 7223a13274..c1222562ef 100644 --- a/locale/eo_UY/LC_MESSAGES/django.po +++ b/locale/eo_UY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-13 14:18\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Esperanto\n" "Language: eo\n" @@ -33,56 +33,55 @@ msgstr "Unu monato" msgid "Does Not Expire" msgstr "Neniam eksvalidiĝas" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} uzoj" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Senlima" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Malĝusta pasvorto" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Pasvorto ne kongruas" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Malĝusta pasvorto" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Dato de fino de legado ne povas esti antaŭ la dato de komenco." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "La dato de halto de legado ne povas esti antaŭ la komenca dato." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "La dato de halto de legado ne povas esti en la estonteco." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "La dato de fino de legado ne povas esti en la estonteco." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Uzantnomo aŭ pasvorto malĝustas" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Uzanto kun tiu ĉi uzantnomo jam ekzistas" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Uzanto kun tiu ĉi retpoŝtadreso jam ekzistas." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Tiu ĉi retadreso ne registreblas." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Malĝusta kodo" @@ -90,7 +89,7 @@ msgstr "Malĝusta kodo" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Tiu ĉi domajno estas blokita. Bonvolu kontakti vian administranton se vi kredas ke tio estas eraro." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Tiu ĉi ligilo kun tiu ĉi dosiertipo estis jam aldonita por tiu ĉi libro. Se ĝi estas nevidebla, la domajno estas ankoraŭ pritraktota." @@ -102,8 +101,8 @@ msgstr "Ordo de listo" msgid "Book Title" msgstr "Titolo de la libro" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Takso" @@ -145,8 +144,8 @@ msgstr "Danĝero" msgid "Automatically generated report" msgstr "Aŭtomate generita raporto" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Forigo fare de kontrolanto" msgid "Domain block" msgstr "Blokado de domajno" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Sonlibro" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "Bitlibro" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Grafika romano" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Rigidkovrila" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Poŝlibro" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Komento" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recenzo" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citaĵo" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Sekvi" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloki" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federaciita" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s ne estas valida remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s ne estas valida uzantnomo" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "uzantnomo" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Uzanto kun tiu uzantnomo jam ekzistas." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Uzanto kun tiu uzantnomo jam ekzistas." msgid "Public" msgstr "Publika" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Publika" msgid "Unlisted" msgstr "Nelistigita" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Nelistigita" msgid "Followers" msgstr "Sekvantoj" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Sekvantoj" msgid "Private" msgstr "Privata" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktiva" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Finita" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Haltigita" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importo haltigita" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Eraro dum la importo de la libro" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Kongrua libro ne troviĝis" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Malsukcesis" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Senpaga" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Aĉetebla" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Pruntebla" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprobita" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Komento" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Solvis la raporton" @@ -363,123 +429,159 @@ msgstr "Aprobis la domajnon" msgid "Deleted item" msgstr "Forigis la eron" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Recenzoj" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Komentoj" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citaĵoj" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Ĉio alia" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Hejma novaĵfluo" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Hejmo" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Libra novaĵfluo" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Libroj" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Angla)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Kataluna)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Germana)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Hispana)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Eŭska)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galega)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Itala)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finna)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Franca)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litova)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (Nederlanda)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norvega)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Pola)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Brazila portugala)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Eŭropa portugala)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Rumana)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Sveda)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (la ukraina)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Simpligita ĉina)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradicia ĉina)" @@ -517,12 +619,8 @@ msgid "The file you are uploading is too large." msgstr "La dosiero, kiun vi estas alŝutanta, estas tro granda." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -" Vi povas uzi malpli grandan dosieron aŭ peti vian BookWyrm-servilo-administranto pligrandigi la agordon DATA_UPLOAD_MAX_MEMORY_SIZE.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -618,7 +716,7 @@ msgid "Statuses posted:" msgstr "Nombro de afiŝoj:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versio de la programo:" @@ -728,7 +826,7 @@ msgstr "Ria plej mallonga legaĵo ĉi-jare…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -808,44 +906,48 @@ msgid "Wikipedia" msgstr "Vikipedio" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Retejo" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Vidi la ISNI-registraĵon" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Vidi ĉe ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Ŝarĝi per la datumaro" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Vidi ĉe OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Vidi ĉe Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Vidi ĉe LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Vidi ĉe Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Libroj de %(name)s" @@ -882,8 +984,8 @@ msgid "Name:" msgstr "Nomo:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Apartigu plurajn valorojn per komoj." @@ -895,50 +997,54 @@ msgstr "Biografio:" msgid "Wikipedia link:" msgstr "Artikolo ĉe Vikipedio:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Retejo:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Naskiĝdato:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Mortodato:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Aŭtoridentigiloj" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Ŝlosilo de Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Ŝlosilo de Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Ŝlosilo de Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -946,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -960,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Konservi" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -977,6 +1083,7 @@ msgstr "Konservi" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -994,100 +1101,104 @@ msgstr "La ŝarĝado konektos al %(source_name)s kaj kontrolos #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Konfirmi" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "La konekto al la fora fonto malsukcesis." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Modifi libron" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Alklaku por aldoni kovrilon" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Elŝuto de la kovrilo malsukcesis" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Alklaku por grandigi" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s recenzo)" msgstr[1] "(%(review_count)s recenzoj)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Aldoni priskribon" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Priskribo:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s eldono" msgstr[1] "%(count)s eldonoj" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Vi surbretigis ĉi tiun eldonon sur:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Alia eldono de ĉi tiu libro estas sur via breto %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Via lega agado" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Aldoni legodatojn" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Vi ne havas legan agadon por ĉi tiu libro." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Viaj recenzoj" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Viaj komentoj" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Viaj citaĵoj" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Temoj" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lokoj" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1095,18 +1206,18 @@ msgstr "Lokoj" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listoj" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Aldoni al la listo" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1129,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "Kopiis la ISBN!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Numero OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "ASIN Audible:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Aldoni kovrilon" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Alŝuti kovrilon:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Ŝarĝi la kovrilon el URL:" @@ -1236,7 +1357,7 @@ msgid "This is a new work" msgstr "Ĉi tio estas nova verkaĵo" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1289,125 +1410,129 @@ msgstr "Reen" msgid "Title:" msgstr "Titolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Ordiga titolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtitolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serio:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Numero en la serio:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Lingvoj:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Temoj:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Aldoni temon" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Forigi temon" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Aldoni alian temon" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Eldonado" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Eldonejo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Dato de la unua eldono:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Dato de la eldonado:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Aŭtoroj" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Forigi %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Aŭtorpaĝo de %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Aldoni aŭtorojn:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Aldoni aŭtoron" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Johana Cervino" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Aldoni alian aŭtoron" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Kovrilo" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Fizikaj ecoj" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detaloj de la formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Paĝoj:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Libroidentigiloj" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1435,7 +1560,7 @@ msgid "Any" msgstr "Ĉiuj" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Lingvo:" @@ -1496,12 +1621,15 @@ msgid "Domain" msgstr "Domajno" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1513,8 +1641,8 @@ msgstr "Stato" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1560,8 +1688,8 @@ msgstr "Foriro de BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Ĉi tiu ligilo direktas vin al: %(link_url)s.
    Ĉu ja tien vi volas iri?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Daŭrigi" @@ -1617,7 +1745,19 @@ msgstr "Sennumera libro" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "La ŝarĝado konektos al %(source_name)s kaj kontrolos ĉu estas metadatumoj pri ĉi tiu libro kiuj ne jam ĉeestas ĉi tie. La ekzistantaj datumoj ne anstataŭiĝos." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Modifi la afiŝon" @@ -1644,7 +1784,7 @@ msgstr "Konfirmkodo:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Sendi" @@ -1726,12 +1866,12 @@ msgstr "Sugestita" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1852,8 +1992,8 @@ msgstr "Saluton," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm gastigita ĉe %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1871,8 +2011,8 @@ msgstr "Aliĝi nun" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Pli da informo pri %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2048,19 +2188,19 @@ msgid "Add to your books" msgstr "Aldoni al viaj libroj" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Legota" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Legata" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2069,7 +2209,7 @@ msgid "Read" msgstr "Legita" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Haltigita legado" @@ -2102,7 +2242,7 @@ msgstr "Vi povos aldoni librojn kiam vi komencos uzi %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Serĉi" @@ -2754,6 +2894,7 @@ msgstr "Vi povas krei grupon aŭ aliĝi al grupo kun aliaj uzantoj. Grupoj povas #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupoj" @@ -2868,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Restas al vi %(display_left)s." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Averaĝe, lastatempaj importoj bezonis %(hours)s horojn." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Averaĝe, lastatempaj importoj bezonis %(minutes)s minutojn." @@ -2898,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Vi povas elŝuti vian datumaron de Goodreads per la paĝo Import/Export de via konto ĉe Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Datumdosiero:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Inkluzivi recenzojn" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Agordo de privateco por importitaj recenzoj:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importi" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Vi atingis la limon de importado." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Oni provizore malŝaltis importadon; dankon pro via pacienco." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Lastatempaj importoj" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Dato de kreado" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Lasta ĝisdatigo" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Aĵoj" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Neniu lastatempa importo" @@ -2984,20 +3139,24 @@ msgid "Imports" msgstr "Importoj" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Komenco de la importo:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Okazanta" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Aktualigi" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Ĉesigi la importon" @@ -3014,6 +3173,7 @@ msgid "Review items" msgstr "Kontroli la aĵojn" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3021,6 +3181,7 @@ msgstr[0] "%(display_counter)s aĵo malsukcesis importiĝi." msgstr[1] "%(display_counter)s aĵoj malsukcesis importiĝi." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Vidi kaj korekti malsukcesintajn aĵojn" @@ -3029,12 +3190,14 @@ msgid "Row" msgstr "Linio" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titolo" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3043,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Ŝlosilo de Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Aŭtoro" @@ -3052,13 +3215,9 @@ msgstr "Aŭtoro" msgid "Shelf" msgstr "Breto" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recenzo" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Libro" @@ -3076,6 +3235,8 @@ msgid "View imported review" msgstr "Vidi la importitan recenzon" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importita" @@ -3111,114 +3272,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Paŝo 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Paŝo 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Profilo" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Ĉu via konto estu proponata al aliaj uzantoj" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Via horzono" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Bretoj" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3242,15 +3408,18 @@ msgid "Reject" msgstr "Malaprobi" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Malsukcesaj aĵoj" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Problemsolvado" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Reprovi importon povas korekti mankantajn aĵojn en okazoj kiel:" @@ -3259,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "La libro aldoniĝis al la instanco post la importo" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Momenta eraro aŭ tempolimo kaŭzis, ke la fora datumfonto estis nedisponebla." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm intertempe ĝisdatiĝis post la importo kun cimriparo" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Kontaktu vian administranton aŭ raportu problemon se vi vidas neatenditajn malsukcesajn aĵojn." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Uzanto-importoj" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Sumo" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Afiŝoj" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Importitaj libroj" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Vi povos re-provi tiun ĉi importon je %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Rilato" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Kialo" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Krei konton" @@ -3324,7 +3568,7 @@ msgid "Login" msgstr "Ensaluto" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Ensaluti" @@ -3340,22 +3584,22 @@ msgstr "Sukceso! La retadreso estis konfirmita." msgid "Username:" msgstr "Uzantnomo:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Pasvorto:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Ĉu forgesita pasvorto?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Pli pri ĉi tiu retejo" @@ -3383,7 +3627,7 @@ msgstr "Restarigi pasvorton" msgid "Reactivate Account" msgstr "Reaktivigi konton" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Reaktivigi la konton" @@ -3393,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "Serĉi en %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Serĉi libron, uzanton aŭ liston" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3607,6 +3851,8 @@ msgid "List position" msgstr "Pozicio" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Apliki" @@ -3931,7 +4177,7 @@ msgstr "%(related_user)s kaj %(other_user_ #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Nova domajno en ligilo bezonas kontrolon" msgstr[1] "%(display_count)s novaj domajnoj en ligiloj bezonas kontrolon" @@ -4102,21 +4348,21 @@ msgstr "Vi jam sekvas %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Vi jam petis sekvi %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Sekvu %(username)s en la fediverso" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Sekvu %(username)s per alia fediversa konto kiel BookWyrm, Mastodon aŭ Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Konto per kiu vi volas sekvi:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Sekvi!" @@ -4157,99 +4403,31 @@ msgstr "Ni unue ensalutu..." msgid "Follow %(username)s" msgstr "Sekvi %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Vi nun sekvas %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Dupaŝa aŭtentigo" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "La agordoj de dupaŝa aŭtentigo sukcese ĝisdatiĝis" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Transloki konton" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Skribu aŭ kopiu ĉi tiujn kodojn en sekuran lokon." +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Krei alinomon" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Vi devos uzi ilin en la ĝusta ordo kaj ili ne denove montriĝos." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Aldoni alian konton kiel alinomon" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Dupaŝa aŭtentigo estas ŝaltita por via konto." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Malŝalti dupaŝan aŭtentigon" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Vi povas generi rezervajn kodojn por uzi okaze ke vi ne plu havos aliron al la aplikaĵo de aŭtentigo. Se vi generos novajn kodojn, neniuj antaŭaj kodoj plu funkcios." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Generi rezervajn kodojn" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Skanu la QR-an kodon per via aplikaĵo de aŭtentigo kaj sekve tajpu la kodon de via aplikaĵo sube por konfirmi ke via aplikaĵo estas ĝuste agordita." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Uzi ŝlosilon de agordado" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Kontonomo:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Kodo:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Tajpu la kodon de via aplikaĵo:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Vi povas plisekurigi vian konton uzante dupaŝan aŭtentigon (2FA). Tio postulos ke vi entajpu unu-uzan kodon donitan de poŝtelefona aplikaĵo kiel Authy, Google AuthenticatorMicrosoft Authenticator ĉiun fojon kiam vi ensalutas." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Konfirmu vian pasvorton por komenci agordi la dupaŝan aŭtentigon (2FA)." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Agordi dupaŝan aŭtentigon" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "Transloki konton" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "Krei alinomon" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "Aldoni alian konton kiel alinomon" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "Marki alian konton kiel alinomon estas bezonate se vi volas transloki tiun konton al ĉi tiun." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "Marki alian konton kiel alinomon estas bezonate se vi volas transloki tiun konton al ĉi tiun." #: bookwyrm/templates/preferences/alias_user.html:19 msgid "This is a reversable action and will not change the functionality of this account." @@ -4330,6 +4508,12 @@ msgstr "Porĉiame forigi la konton" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Ne eblos malfari la forigon de via konto. La uzantonomo ne disponeblos por registriĝo estontece." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Malŝalti dupaŝan aŭtentigon" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Malŝalti dupaŝan aŭtentigon" @@ -4359,12 +4543,12 @@ msgstr "Profilo" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Afiŝado" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privateco" @@ -4373,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Montri la demandon pri via legocelo en la fluo" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Montri proponitajn uzantojn" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Montri ĉi tiun konton en la proponitaj uzantoj" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Via konto aperos en la adresaro kaj eble estos rekomendita al aliaj uzantoj de BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Preferata horzono: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Etoso:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Permane aprobi sekvantojn" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Kaŝi la sekvantojn kaj la sekvatojn ĉe via profilo" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Defaŭlta privateco de afiŝoj:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Ĉu vi volas privatajn bretojn? Vi povas agordi apartan nivelon de videbleco por ĉiu breto. Iru al Viaj libroj, elektu breton per la langetoj, kaj alklaku «Modifi breton»." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Rektaj mesaĝoj" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "Averaĝe, lastatempaj eksportoj bezonis %(hours)s horojn." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "Averaĝe, lastatempaj eksportoj bezonis %(minutes)s minutojn." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Lastatempaj eksportoj" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Dato" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Grandeco" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4479,6 +4727,10 @@ msgstr "Elŝuti la dosieron" msgid "Account" msgstr "Konto" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Transloki konton" @@ -4515,6 +4767,124 @@ msgstr "Ne forgesu aldoni ĉi tiun uzanton kiel alinomon de la celata konto anta msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Entajpu la uzantnomon de la konto al kiu vi volas transloki, ekz. uzanto@ekzemplo.org:" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Dupaŝa aŭtentigo" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "La agordoj de dupaŝa aŭtentigo sukcese ĝisdatiĝis" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Skribu aŭ kopiu ĉi tiujn kodojn en sekuran lokon." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Vi devos uzi ilin en la ĝusta ordo kaj ili ne denove montriĝos." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Dupaŝa aŭtentigo estas ŝaltita por via konto." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Vi povas generi rezervajn kodojn por uzi okaze ke vi ne plu havos aliron al la aplikaĵo de aŭtentigo. Se vi generos novajn kodojn, neniuj antaŭaj kodoj plu funkcios." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Generi rezervajn kodojn" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Skanu la QR-an kodon per via aplikaĵo de aŭtentigo kaj sekve tajpu la kodon de via aplikaĵo sube por konfirmi ke via aplikaĵo estas ĝuste agordita." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Uzi ŝlosilon de agordado" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Kontonomo:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Kodo:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Tajpu la kodon de via aplikaĵo:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Vi povas plisekurigi vian konton uzante dupaŝan aŭtentigon (2FA). Tio postulos ke vi entajpu unu-uzan kodon donitan de poŝtelefona aplikaĵo kiel Authy, Google AuthenticatorMicrosoft Authenticator ĉiun fojon kiam vi ensalutas." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Konfirmu vian pasvorton por komenci agordi la dupaŝan aŭtentigon (2FA)." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Agordi dupaŝan aŭtentigon" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4560,6 +4930,7 @@ msgstr "Komencis legi" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progreso" @@ -4690,8 +5061,8 @@ msgstr "Serĉo" msgid "Search type" msgstr "Tipo de serĉo" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4701,12 +5072,12 @@ msgstr "Tipo de serĉo" msgid "Users" msgstr "Uzantoj" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Neniu rezulto troviĝis por «%(query)s»" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4728,7 +5099,7 @@ msgstr "Modifi" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Anoncoj" @@ -4746,13 +5117,13 @@ msgstr "Malvera" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Komenca dato:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Fina dato:" @@ -4821,7 +5192,6 @@ msgstr "Koloro:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Reguloj de aŭtomata moderigado" @@ -4834,35 +5204,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Uzantoj aŭ afiŝoj kiujn oni jam raportis (sendepende ĉu la raporto solviĝis ĉu ne) ne estos markitaj." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Plano:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Laste rulita:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Suma nombro de ruliĝoj:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Ŝaltita:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Forigi planon" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Ruli nun" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "La dato de lasta ruliĝo ne ŝanĝiĝos" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Plani analizon" @@ -4907,6 +5285,7 @@ msgstr "Forigi la regulon" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Stato de Celery" @@ -4935,6 +5314,7 @@ msgid "Import triggered" msgstr "Importo lanĉiĝis" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Konektiloj" @@ -4978,8 +5358,9 @@ msgid "Active Tasks" msgstr "Aktivaj taskoj" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4992,6 +5373,8 @@ msgid "Run time" msgstr "Daŭro" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioritato" @@ -5024,6 +5407,66 @@ msgstr "Malplenigi la vicojn povas kaŭzi gravajn problemojn inkluzive de perdo msgid "Errors" msgstr "Eraroj" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Kialo de la malaktivigo:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Frataraj instancoj" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Ĝisdatigi" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5031,7 +5474,7 @@ msgid "Dashboard" msgstr "Panelo" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Suma nombro de uzantoj" @@ -5040,40 +5483,36 @@ msgstr "Suma nombro de uzantoj" msgid "Active this month" msgstr "Aktivaj ĉi-monate" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Afiŝoj" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Verkoj" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Aktiveco de la instanco" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intertempo:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Tagoj" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Semajnoj" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Novaj aliĝoj" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Novaj afiŝoj" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Verkoj kreitaj" @@ -5085,9 +5524,13 @@ msgstr "Registriĝoj" msgid "Statuses posted" msgstr "Nombro de afiŝoj" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Sumo" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5169,7 +5612,7 @@ msgstr "Neniu retpoŝtdomajno estas aktuale blokita" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Agordoj de retpoŝto" @@ -5182,7 +5625,7 @@ msgid "Successfully sent test email." msgstr "Sukcese sendis provmesaĝon." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Retadreso de mesaĝoj de la retejo:" @@ -5230,15 +5673,6 @@ msgstr "Sendi provmesaĝon" msgid "Add instance" msgstr "Aldoni instancon" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Frataraj instancoj" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5314,12 +5748,6 @@ msgstr "Notoj" msgid "No notes" msgstr "Neniu noto" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloki" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Ĉiuj uzantoj de ĉi tiu instanco estos malaktivigitaj." @@ -5372,6 +5800,49 @@ msgstr "Programaro" msgid "No instances found" msgstr "Neniu instanco troviĝis" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Finita" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5418,7 +5889,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Kelkaj uzantoj eble provos importi grandan kvanton de libroj, kion vi volas limigi." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Agordi la valoron al 0 por ne havi limon." @@ -5438,62 +5909,81 @@ msgstr "tagojn." msgid "Set limit" msgstr "Agordi la limon" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "horoj" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Libro-Importoj" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Finita" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Uzanto" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Dato de ĝisdatigo" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Traktotaj aĵoj" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Sukcesaj aĵoj" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Neniu kongrua importo troviĝis." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Uzanto-importoj" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5657,6 +6147,10 @@ msgstr "Moderigado" msgid "Reports" msgstr "Raportoj" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5667,22 +6161,26 @@ msgstr "Domajnoj de ligiloj" msgid "System" msgstr "Sistemo" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Stato de Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Agordoj de la instanco" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Agordoj de la retejo" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5690,7 +6188,7 @@ msgstr "Agordoj de la retejo" msgid "Registration" msgstr "Registrado" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5896,6 +6394,61 @@ msgstr "Solvita" msgid "No reports found." msgstr "Neniu raporto troviĝis." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nomo" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6141,10 +6694,6 @@ msgstr "Permane aprobas sekvantojn:" msgid "Discoverable:" msgstr "Eltrovebla:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Kialo de la malaktivigo:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detaloj de la instanco" @@ -6238,8 +6787,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Via domajno ŝajnas misagordita. Ĝi devus ne enhavi protokolon aŭ oblikvajn strekojn." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Vi rulas BookWyrm en la produkta reĝimo sen HTTPS. USE_HTTPS devus esti ŝaltita por produktaj uzoj." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6249,39 +6798,39 @@ msgstr "Agordoj" msgid "Instance domain:" msgstr "Domajno de la instanco:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokolo:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Uzas S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Defaŭlta lingvo de la interfaco:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Ŝalti antaŭrigardajn bildojn:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Ŝalti bildetojn:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Ĉu ĉio ŝajnas ĝusta?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Nun estas via lasta eblo agordi viajn domajnon kaj protokolon." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Vi povas ŝanĝi la agordojn de la instanco en la dosiero .env ĉe via servilo." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Vidi la instrukciojn de instalado" @@ -6298,7 +6847,7 @@ msgid "Need help?" msgstr "Ĉu vi bezonas helpon?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Krei breton" @@ -6306,59 +6855,72 @@ msgstr "Krei breton" msgid "Edit Shelf" msgstr "Modifi breton" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Ĉiuj libroj" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importi librojn" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s libro" msgstr[1] "%(formatted_count)s libroj" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(montriĝas %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Modifi la breton" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Forigi la breton" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Surbretigo" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Komencis" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Finis" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Ĝis" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Ĉi tiu breto estas malplena." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Inviti" @@ -6460,10 +7022,6 @@ msgstr "Atentu! Intrigmalkaŝoj!" msgid "Comment:" msgstr "Komento:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Ĝisdatigi" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Afiŝi" @@ -6489,7 +7047,7 @@ msgstr "Ĉe paĝo:" msgid "At percent:" msgstr "Ĉe elcento:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "ĝis" @@ -6534,10 +7092,6 @@ msgstr "Apliki la filtrilojn" msgid "Follow @%(username)s" msgstr "Sekvi @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Sekvi" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Nuligi la peton de sekvado" @@ -6570,7 +7124,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "La fontokodo de BookWyrm estas libere havebla. Vi povas kontribui aŭ raporti problemojn ĉe GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Neniu takso" @@ -6582,7 +7136,7 @@ msgstr[0] "%(half_rating)s stelo" msgstr[1] "%(half_rating)s steloj" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6811,6 +7365,10 @@ msgstr "Halti legi" msgid "Finish reading" msgstr "Ĉesi legi" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Montri la afiŝon" @@ -7166,8 +7724,9 @@ msgid "View profile and more" msgstr "Vidi la profilon kaj pli" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "La dosiero transiras la limon de grandeco: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7186,25 +7745,9 @@ msgstr[1] "%(num)d libroj – de %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Afiŝoj de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Recenzoj de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citaĵoj de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Komentoj de {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/es/LC_MESSAGES/django.mo b/locale/es/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..9a331addad Binary files /dev/null and b/locale/es/LC_MESSAGES/django.mo differ diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000000..a9a8583d06 --- /dev/null +++ b/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,4611 @@ +# Spanish-language translation +# Copyright (C) 2021 Mouse Reeve +# This file is distributed under the same license as the BookWyrm package. +# Mouse Reeve , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-10-06 23:57+0000\n" +"PO-Revision-Date: 2021-03-19 11:49+0800\n" +"Last-Translator: Reese Porter \n" +"Language-Team: \n" +"Language: Spanish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: bookwyrm/forms.py:242 +msgid "A user with this email already exists." +msgstr "Ya existe un usuario con ese correo electrónico." + +#: bookwyrm/forms.py:256 +msgid "One Day" +msgstr "Un día" + +#: bookwyrm/forms.py:257 +msgid "One Week" +msgstr "Una semana" + +#: bookwyrm/forms.py:258 +msgid "One Month" +msgstr "Un mes" + +#: bookwyrm/forms.py:259 +msgid "Does Not Expire" +msgstr "Nunca se vence" + +#: bookwyrm/forms.py:263 +#, python-brace-format +msgid "{i} uses" +msgstr "{i} usos" + +#: bookwyrm/forms.py:264 +msgid "Unlimited" +msgstr "Sin límite" + +#: bookwyrm/forms.py:326 +msgid "List Order" +msgstr "Orden de la lista" + +#: bookwyrm/forms.py:327 +msgid "Book Title" +msgstr "Título" + +#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 +#: bookwyrm/templates/snippets/create_status/review.html:33 +msgid "Rating" +msgstr "Calificación" + +#: bookwyrm/forms.py:330 bookwyrm/templates/lists/list.html:109 +msgid "Sort By" +msgstr "Ordenar por" + +#: bookwyrm/forms.py:334 +msgid "Ascending" +msgstr "Ascendente" + +#: bookwyrm/forms.py:335 +msgid "Descending" +msgstr "Descendente" + +#: bookwyrm/importers/importer.py:75 +msgid "Error loading book" +msgstr "Error en cargar libro" + +#: bookwyrm/importers/importer.py:88 +msgid "Could not find a match for book" +msgstr "No se pudo encontrar el libro" + +#: bookwyrm/models/base_model.py:17 +msgid "Pending" +msgstr "Pendiente" + +#: bookwyrm/models/base_model.py:18 +msgid "Self deletion" +msgstr "Auto-eliminación" + +#: bookwyrm/models/base_model.py:19 +msgid "Moderator suspension" +msgstr "Suspensión de moderador" + +#: bookwyrm/models/base_model.py:20 +msgid "Moderator deletion" +msgstr "Eliminación de moderador" + +#: bookwyrm/models/base_model.py:21 +msgid "Domain block" +msgstr "Bloqueo de dominio" + +#: bookwyrm/models/book.py:232 +msgid "Audiobook" +msgstr "Audio libro" + +#: bookwyrm/models/book.py:233 +msgid "eBook" +msgstr "Libro electrónico" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "Novela gráfica" + +#: bookwyrm/models/book.py:235 +msgid "Hardcover" +msgstr "Tapa dura" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "Tapa blanda" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 +msgid "Federated" +msgstr "Federalizado" + +#: bookwyrm/models/federated_server.py:12 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 +msgid "Blocked" +msgstr "Bloqueado" + +#: bookwyrm/models/fields.py:27 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s no es un remote_id válido" + +#: bookwyrm/models/fields.py:36 bookwyrm/models/fields.py:45 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s no es un usuario válido" + +#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:171 +msgid "username" +msgstr "nombre de usuario" + +#: bookwyrm/models/fields.py:186 +msgid "A user with that username already exists." +msgstr "Ya existe un usuario con ese nombre." + +#: bookwyrm/settings.py:117 +msgid "Home Timeline" +msgstr "Línea temporal de hogar" + +#: bookwyrm/settings.py:117 +msgid "Home" +msgstr "Hogar" + +#: bookwyrm/settings.py:118 +msgid "Books Timeline" +msgstr "Línea temporal de libros" + +#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21 +#: bookwyrm/templates/search/layout.html:42 +#: bookwyrm/templates/user/layout.html:81 +msgid "Books" +msgstr "Libros" + +#: bookwyrm/settings.py:164 +msgid "English" +msgstr "Inglés" + +#: bookwyrm/settings.py:165 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:166 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:167 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:168 +msgid "简体中文 (Simplified Chinese)" +msgstr "Chino simplificado" + +#: bookwyrm/settings.py:169 +msgid "繁體中文 (Traditional Chinese)" +msgstr "Chino tradicional" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "No encontrado" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "¡Parece que la página solicitada no existe!" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "¡Úps!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Error de servidor" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "¡Algo salió mal! Disculpa." + +#: bookwyrm/templates/author/author.html:17 +#: bookwyrm/templates/author/author.html:18 +msgid "Edit Author" +msgstr "Editar Autor/Autora" + +#: bookwyrm/templates/author/author.html:34 +#: bookwyrm/templates/author/edit_author.html:41 +msgid "Aliases:" +msgstr "Aliases:" + +#: bookwyrm/templates/author/author.html:45 +msgid "Born:" +msgstr "Nacido:" + +#: bookwyrm/templates/author/author.html:52 +msgid "Died:" +msgstr "Muerto:" + +#: bookwyrm/templates/author/author.html:61 +msgid "Wikipedia" +msgstr "Wikipedia" + +#: bookwyrm/templates/author/author.html:69 +#: bookwyrm/templates/book/book.html:94 +msgid "View on OpenLibrary" +msgstr "Ver en OpenLibrary" + +#: bookwyrm/templates/author/author.html:77 +#: bookwyrm/templates/book/book.html:97 +msgid "View on Inventaire" +msgstr "Ver en Inventaire" + +#: bookwyrm/templates/author/author.html:85 +msgid "View on LibraryThing" +msgstr "Ver en LibraryThing" + +#: bookwyrm/templates/author/author.html:93 +msgid "View on Goodreads" +msgstr "Ver en Goodreads" + +#: bookwyrm/templates/author/author.html:108 +#, python-format +msgid "Books by %(name)s" +msgstr "Libros de %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Editar Autor/Autora/Autore:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:18 +msgid "Added:" +msgstr "Agregado:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:21 +msgid "Updated:" +msgstr "Actualizado:" + +#: bookwyrm/templates/author/edit_author.html:15 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Last edited by:" +msgstr "Editado más recientemente por:" + +#: bookwyrm/templates/author/edit_author.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:15 +msgid "Metadata" +msgstr "Metadatos" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Nombre:" + +#: bookwyrm/templates/author/edit_author.html:43 +#: bookwyrm/templates/book/edit/edit_book_form.html:65 +#: bookwyrm/templates/book/edit/edit_book_form.html:79 +#: bookwyrm/templates/book/edit/edit_book_form.html:124 +msgid "Separate multiple values with commas." +msgstr "Separar varios valores con comas." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Bio:" + +#: bookwyrm/templates/author/edit_author.html:57 +msgid "Wikipedia link:" +msgstr "Enlace de Wikipedia:" + +#: bookwyrm/templates/author/edit_author.html:63 +msgid "Birth date:" +msgstr "Fecha de nacimiento:" + +#: bookwyrm/templates/author/edit_author.html:71 +msgid "Death date:" +msgstr "Fecha de muerte:" + +#: bookwyrm/templates/author/edit_author.html:79 +msgid "Author Identifiers" +msgstr "Identificadores de autor/autora" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Openlibrary key:" +msgstr "Clave OpenLibrary:" + +#: bookwyrm/templates/author/edit_author.html:89 +#: bookwyrm/templates/book/edit/edit_book_form.html:224 +msgid "Inventaire ID:" +msgstr "ID Inventaire:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Clave Librarything:" + +#: bookwyrm/templates/author/edit_author.html:105 +msgid "Goodreads key:" +msgstr "Clave Goodreads:" + +#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/book/book.html:140 +#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/readthrough.html:76 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/form.html:44 +#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Guardar" + +#: bookwyrm/templates/author/edit_author.html:117 +#: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 +#: bookwyrm/templates/book/cover_modal.html:32 +#: bookwyrm/templates/book/edit/edit_book.html:111 +#: bookwyrm/templates/book/readthrough.html:77 +#: bookwyrm/templates/lists/delete_list_modal.html:17 +#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 +#: bookwyrm/templates/snippets/report_modal.html:34 +msgid "Cancel" +msgstr "Cancelar" + +#: bookwyrm/templates/book/book.html:47 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:25 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "por" + +#: bookwyrm/templates/book/book.html:55 bookwyrm/templates/book/book.html:56 +msgid "Edit Book" +msgstr "Editar Libro" + +#: bookwyrm/templates/book/book.html:73 +#: bookwyrm/templates/book/cover_modal.html:5 +msgid "Add cover" +msgstr "Agregar portada" + +#: bookwyrm/templates/book/book.html:77 +msgid "Failed to load cover" +msgstr "No se pudo cargar la portada" + +#: bookwyrm/templates/book/book.html:117 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s reseña)" +msgstr[1] "(%(review_count)s reseñas)" + +#: bookwyrm/templates/book/book.html:129 +msgid "Add Description" +msgstr "Agregar descripción" + +#: bookwyrm/templates/book/book.html:136 +#: bookwyrm/templates/book/edit/edit_book_form.html:34 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Descripción:" + +#: bookwyrm/templates/book/book.html:150 +#, python-format +msgid "%(count)s editions" +msgstr "%(count)s ediciones" + +#: bookwyrm/templates/book/book.html:158 +#, python-format +msgid "This edition is on your %(shelf_name)s shelf." +msgstr "Esta edición está en tu %(shelf_name)s estante." + +#: bookwyrm/templates/book/book.html:164 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "Una edición diferente de este libro está en tu %(shelf_name)s estante." + +#: bookwyrm/templates/book/book.html:175 +msgid "Your reading activity" +msgstr "Tu actividad de lectura" + +#: bookwyrm/templates/book/book.html:178 +msgid "Add read dates" +msgstr "Agregar fechas de lectura" + +#: bookwyrm/templates/book/book.html:187 +msgid "Create" +msgstr "Crear" + +#: bookwyrm/templates/book/book.html:197 +msgid "You don't have any reading activity for this book." +msgstr "No tienes ninguna actividad de lectura para este libro." + +#: bookwyrm/templates/book/book.html:218 +msgid "Reviews" +msgstr "Reseñas" + +#: bookwyrm/templates/book/book.html:223 +msgid "Your reviews" +msgstr "Tus reseñas" + +#: bookwyrm/templates/book/book.html:229 +msgid "Your comments" +msgstr "Tus comentarios" + +#: bookwyrm/templates/book/book.html:235 +msgid "Your quotes" +msgstr "Tus citas" + +#: bookwyrm/templates/book/book.html:271 +msgid "Subjects" +msgstr "Sujetos" + +#: bookwyrm/templates/book/book.html:283 +msgid "Places" +msgstr "Lugares" + +#: bookwyrm/templates/book/book.html:294 bookwyrm/templates/layout.html:75 +#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:50 +#: bookwyrm/templates/user/layout.html:75 +msgid "Lists" +msgstr "Listas" + +#: bookwyrm/templates/book/book.html:305 +msgid "Add to list" +msgstr "Agregar a lista" + +#: bookwyrm/templates/book/book.html:315 +#: bookwyrm/templates/book/cover_modal.html:31 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Agregar" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:15 +#: bookwyrm/templates/book/edit/edit_book_form.html:232 +msgid "OCLC Number:" +msgstr "Número OCLC:" + +#: bookwyrm/templates/book/book_identifiers.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/cover_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:143 +msgid "Upload cover:" +msgstr "Subir portada:" + +#: bookwyrm/templates/book/cover_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 +msgid "Load cover from url:" +msgstr "Agregar portada de url:" + +#: bookwyrm/templates/book/edit/edit_book.html:5 +#: bookwyrm/templates/book/edit/edit_book.html:11 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Editar \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:5 +#: bookwyrm/templates/book/edit/edit_book.html:13 +msgid "Add Book" +msgstr "Agregar libro" + +#: bookwyrm/templates/book/edit/edit_book.html:47 +msgid "Confirm Book Info" +msgstr "Confirmar información de libro" + +#: bookwyrm/templates/book/edit/edit_book.html:55 +#, python-format +msgid "Is \"%(name)s\" an existing author?" +msgstr "¿Es \"%(name)s\" un autor ya existente?" + +#: bookwyrm/templates/book/edit/edit_book.html:64 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Autor de %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:68 +msgid "This is a new author" +msgstr "Este es un autor nuevo" + +#: bookwyrm/templates/book/edit/edit_book.html:75 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Creando un autor nuevo: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:82 +msgid "Is this an edition of an existing work?" +msgstr "¿Es esta una edición de una obra ya existente?" + +#: bookwyrm/templates/book/edit/edit_book.html:90 +msgid "This is a new work" +msgstr "Esta es una obra nueva" + +#: bookwyrm/templates/book/edit/edit_book.html:97 +#: bookwyrm/templates/password_reset.html:30 +msgid "Confirm" +msgstr "Confirmar" + +#: bookwyrm/templates/book/edit/edit_book.html:99 +#: bookwyrm/templates/feed/status.html:9 +msgid "Back" +msgstr "Volver" + +#: bookwyrm/templates/book/edit/edit_book_form.html:18 +#: bookwyrm/templates/snippets/create_status/review.html:16 +msgid "Title:" +msgstr "Título:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +msgid "Subtitle:" +msgstr "Subtítulo:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:44 +msgid "Series:" +msgstr "Serie:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:53 +msgid "Series number:" +msgstr "Número de serie:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:63 +msgid "Languages:" +msgstr "Idiomas:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#, fuzzy +#| msgid "Public" +msgid "Publication" +msgstr "Público" + +#: bookwyrm/templates/book/edit/edit_book_form.html:77 +msgid "Publisher:" +msgstr "Editorial:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:86 +msgid "First published date:" +msgstr "Fecha de primera publicación:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:94 +msgid "Published date:" +msgstr "Fecha de publicación:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:104 +msgid "Authors" +msgstr "Autores" + +#: bookwyrm/templates/book/edit/edit_book_form.html:112 +#, python-format +msgid "Remove %(name)s" +msgstr "Quitar %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:115 +#, python-format +msgid "Author page for %(name)s" +msgstr "Página de autor por %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:122 +msgid "Add Authors:" +msgstr "Agregar Autores:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:123 +msgid "John Doe, Jane Smith" +msgstr "Juan Nadie, Natalia Natalia" + +#: bookwyrm/templates/book/edit/edit_book_form.html:132 +#: bookwyrm/templates/shelf/shelf.html:127 +msgid "Cover" +msgstr "Portada:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Physical Properties" +msgstr "Propiedades físicas:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:166 +#: bookwyrm/templates/book/editions/format_filter.html:5 +msgid "Format:" +msgstr "Formato:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Format details:" +msgstr "Detalles del formato" + +#: bookwyrm/templates/book/edit/edit_book_form.html:187 +msgid "Pages:" +msgstr "Páginas:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:197 +msgid "Book Identifiers" +msgstr "Identificadores de libro" + +#: bookwyrm/templates/book/edit/edit_book_form.html:200 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:208 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Openlibrary ID:" +msgstr "ID OpenLibrary:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Ediciones de %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of \"%(work_title)s\"" +msgstr "Ediciones de \"%(work_title)s\"" + +#: bookwyrm/templates/book/editions/format_filter.html:8 +#: bookwyrm/templates/book/editions/language_filter.html:8 +msgid "Any" +msgstr "Cualquier" + +#: bookwyrm/templates/book/editions/language_filter.html:5 +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Language:" +msgstr "Idioma:" + +#: bookwyrm/templates/book/editions/search_filter.html:5 +msgid "Search editions" +msgstr "Buscar ediciones" + +#: bookwyrm/templates/book/publisher_info.html:21 +#, python-format +msgid "%(format)s" +msgstr "%(format)s" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s páginas" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s páginas" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "idioma %(languages)s" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Publicado %(date)s por %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Publicado %(date)s" + +#: bookwyrm/templates/book/publisher_info.html:69 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Publicado por %(publisher)s." + +#: bookwyrm/templates/book/rating.html:13 +msgid "rated it" +msgstr "lo calificó con" + +#: bookwyrm/templates/book/readthrough.html:8 +msgid "Progress Updates:" +msgstr "Actualizaciones de progreso:" + +#: bookwyrm/templates/book/readthrough.html:13 +msgid "finished" +msgstr "terminado" + +#: bookwyrm/templates/book/readthrough.html:24 +msgid "Show all updates" +msgstr "Mostrar todas las actualizaciones" + +#: bookwyrm/templates/book/readthrough.html:40 +msgid "Delete this progress update" +msgstr "Eliminar esta actualización de progreso" + +#: bookwyrm/templates/book/readthrough.html:51 +msgid "started" +msgstr "empezado" + +#: bookwyrm/templates/book/readthrough.html:58 +#: bookwyrm/templates/book/readthrough.html:72 +msgid "Edit read dates" +msgstr "Editar fechas de lectura" + +#: bookwyrm/templates/book/readthrough.html:62 +msgid "Delete these read dates" +msgstr "Eliminar estas fechas de lectura" + +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:11 +#: bookwyrm/templates/components/tooltip.html:7 +#: bookwyrm/templates/feed/layout.html:71 +#: bookwyrm/templates/get_started/layout.html:20 +#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/search/book.html:49 +#: bookwyrm/templates/snippets/announcement.html:18 +msgid "Close" +msgstr "Cerrar" + +#: bookwyrm/templates/components/tooltip.html:3 +msgid "Help" +msgstr "Ayuda" + +#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +msgid "Compose status" +msgstr "Componer status" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Confirmar correo electrónico" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Confirmar tu dirección de correo electrónico" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Un código de confirmación ha sido enviado a la dirección de correo electrónico que usaste para registrar tu cuenta." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Sentimos que no pudimos encontrar ese código" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:85 +msgid "Confirmation code:" +msgstr "Código de confirmación:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 +msgid "Submit" +msgstr "Enviar" + +#: bookwyrm/templates/confirm_email/confirm_email.html:32 +msgid "Can't find your code?" +msgstr "¿No puedes encontrar tu código?" + +#: bookwyrm/templates/confirm_email/resend_form.html:4 +msgid "Resend confirmation link" +msgstr "Reenviar enlace de confirmación" + +#: bookwyrm/templates/confirm_email/resend_form.html:11 +#: bookwyrm/templates/landing/layout.html:67 +#: bookwyrm/templates/password_reset_request.html:18 +#: bookwyrm/templates/preferences/edit_user.html:56 +#: bookwyrm/templates/snippets/register_form.html:13 +msgid "Email address:" +msgstr "Dirección de correo electrónico:" + +#: bookwyrm/templates/confirm_email/resend_form.html:17 +msgid "Resend link" +msgstr "Re-enviar enlace" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Comunidad" + +#: bookwyrm/templates/directory/community_filter.html:8 +msgid "Local users" +msgstr "Usuarios locales" + +#: bookwyrm/templates/directory/community_filter.html:12 +msgid "Federated community" +msgstr "Comunidad federalizada" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/layout.html:101 +msgid "Directory" +msgstr "Directorio" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Haz que tu perfil sea reconocible a otros usarios de BookWyrm." + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Puedes optar por no en cualquier hora en tus configuraciones de perfil." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/snippets/announcement.html:34 +msgid "Dismiss message" +msgstr "Desechar mensaje" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Ordenar por" + +#: bookwyrm/templates/directory/sort_filter.html:8 +msgid "Recently active" +msgstr "Activ@ recientemente" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Suggested" +msgstr "Sugerido" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Cuenta bloqueada" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "seguidor que tu sigues" +msgstr[1] "seguidores que tu sigues" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "libro en tus estantes" +msgstr[1] "libro en tus estantes" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "publicaciones" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "actividad reciente" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Tipo de usuario" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "Usuarios de BookWyrm" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "Todos los usuarios conocidos" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:78 +msgid "Discover" +msgstr "Descubrir" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "Ver que es nuevo en la comunidad local de %(site_name)s" + +#: bookwyrm/templates/discover/large-book.html:46 +#: bookwyrm/templates/discover/small-book.html:32 +msgid "rated" +msgstr "calificó" + +#: bookwyrm/templates/discover/large-book.html:48 +#: bookwyrm/templates/discover/small-book.html:34 +msgid "reviewed" +msgstr "reseñó" + +#: bookwyrm/templates/discover/large-book.html:50 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "commented on" +msgstr "comentó en" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:38 +msgid "quoted" +msgstr "citó" + +#: bookwyrm/templates/discover/large-book.html:68 +#: bookwyrm/templates/discover/small-book.html:52 +msgid "View status" +msgstr "Ver status" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "¡Un paso final antes de unirte a %(site_name)s! Por favor, confirma tu dirección de correo electrónico por hacer clic en el enlace de abajo:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Confirmar correo electrónico" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "O ingrese el código \"%(confirmation_code)s\" al iniciar sesión." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "Por favor, confirma tu correo electrónico" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "O ingrese el código \"%(confirmation_code)s\" al iniciar sesión." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Hola, " + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm alojado en %(site_name)s" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "Preferencia de correo electrónico" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "¡Estás invitado a unirse con %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Únete ahora" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about this instance." +msgstr "Aprenda más sobre esta instancia." + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "Estás invitado a unirte con %(site_name)s! Haz clic en el enlace a continuación para crear una cuenta." + +#: bookwyrm/templates/email/invite/text_content.html:8 +msgid "Learn more about this instance:" +msgstr "Aprende más sobre esta intancia:" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "Tú solicitaste reestablecer tu %(site_name)s contraseña. Haz clic en el enlace a continuación para establecer una nueva contraseña e ingresar a tu cuenta." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/password_reset.html:4 +#: bookwyrm/templates/password_reset.html:10 +#: bookwyrm/templates/password_reset_request.html:4 +#: bookwyrm/templates/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Restablecer contraseña" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Si no solicitaste reestablecer tu contraseña, puedes ignorar este mensaje." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Reestablece tu contraseña de %(site_name)s" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "Mensajes directos con %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/layout.html:111 +msgid "Direct Messages" +msgstr "Mensajes directos" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Todos los mensajes" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "No tienes ningún mensaje en este momento." + +#: bookwyrm/templates/feed/feed.html:22 +#, python-format +msgid "load 0 unread status(es)" +msgstr "cargar 0 status(es) no leído(s)" + +#: bookwyrm/templates/feed/feed.html:38 +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" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s Meta de lectura" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Puedes establecer o cambiar tu meta de lectura en cualquier momento que desees desde tu perfil" + +#: bookwyrm/templates/feed/layout.html:5 +msgid "Updates" +msgstr "Actualizaciones" + +#: bookwyrm/templates/feed/layout.html:12 +#: bookwyrm/templates/user/books_header.html:3 +msgid "Your books" +msgstr "Tus libros" + +#: bookwyrm/templates/feed/layout.html:14 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "¡No hay ningún libro aqui ahorita! Busca a un libro para empezar" + +#: bookwyrm/templates/feed/layout.html:25 +#: bookwyrm/templates/shelf/shelf.html:38 +msgid "To Read" +msgstr "Para leer" + +#: bookwyrm/templates/feed/layout.html:26 +#: bookwyrm/templates/shelf/shelf.html:40 +msgid "Currently Reading" +msgstr "Leyendo actualmente" + +#: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +msgid "Read" +msgstr "Leido" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "A quién seguir" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "No mostrar usuarios sugeridos" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Ver directorio" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "¿Has leído %(book_title)s?" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "¿Qué estás leyendo?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:45 bookwyrm/templates/lists/list.html:137 +msgid "Search for a book" +msgstr "Buscar libros" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "No se encontró ningún libro correspondiente a \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Puedes agregar libros cuando comiences a usar %(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/layout.html:51 bookwyrm/templates/layout.html:52 +#: bookwyrm/templates/lists/list.html:141 +#: bookwyrm/templates/search/layout.html:4 +#: bookwyrm/templates/search/layout.html:9 +msgid "Search" +msgstr "Buscar" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Libros sugeridos" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Popular en %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:154 +msgid "No books found" +msgstr "No se encontró ningún libro" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:54 +msgid "Save & continue" +msgstr "Guardar & continuar" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Bienvenidos" + +#: bookwyrm/templates/get_started/layout.html:15 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "¡Bienvenido a %(site_name)s!" + +#: bookwyrm/templates/get_started/layout.html:17 +msgid "These are some first steps to get you started." +msgstr "Estos son unos primeros pasos para empezar." + +#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Crear tu perfil" + +#: bookwyrm/templates/get_started/layout.html:35 +msgid "Add books" +msgstr "Agregar libros" + +#: bookwyrm/templates/get_started/layout.html:39 +msgid "Find friends" +msgstr "Encontrar amigos" + +#: bookwyrm/templates/get_started/layout.html:45 +msgid "Skip this step" +msgstr "Saltar este paso" + +#: bookwyrm/templates/get_started/layout.html:49 +msgid "Finish" +msgstr "Terminar" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:42 +msgid "Display name:" +msgstr "Nombre de visualización:" + +#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/preferences/edit_user.html:49 +msgid "Summary:" +msgstr "Resumen:" + +#: bookwyrm/templates/get_started/profile.html:23 +msgid "A little bit about you" +msgstr "Un poco sobre ti" + +#: bookwyrm/templates/get_started/profile.html:32 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Avatar:" + +#: bookwyrm/templates/get_started/profile.html:42 +#: bookwyrm/templates/preferences/edit_user.html:110 +msgid "Manually approve followers:" +msgstr "Aprobar seguidores a mano:" + +#: bookwyrm/templates/get_started/profile.html:48 +#: bookwyrm/templates/preferences/edit_user.html:80 +msgid "Show this account in suggested users:" +msgstr "Mostrar esta cuenta en los usuarios sugeridos:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Tu cuenta se aparecerá en el directorio, y puede ser recomendado a otros usuarios de BookWyrm." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Buscar un usuario" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "No se encontró ningún usuario correspondiente a \"%(query)s\"" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:9 +#: bookwyrm/templates/shelf/shelf.html:57 +msgid "Import Books" +msgstr "Importar libros" + +#: bookwyrm/templates/import/import.html:18 +msgid "Data source:" +msgstr "Fuente de datos:" + +#: bookwyrm/templates/import/import.html:37 +msgid "Data file:" +msgstr "Archivo de datos:" + +#: bookwyrm/templates/import/import.html:45 +msgid "Include reviews" +msgstr "Incluir reseñas" + +#: bookwyrm/templates/import/import.html:50 +msgid "Privacy setting for imported reviews:" +msgstr "Configuración de privacidad para las reseñas importadas:" + +#: bookwyrm/templates/import/import.html:56 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +msgid "Import" +msgstr "Importar" + +#: bookwyrm/templates/import/import.html:61 +msgid "Recent Imports" +msgstr "Importaciones recientes" + +#: bookwyrm/templates/import/import.html:63 +msgid "No recent imports" +msgstr "No hay ninguna importación reciente" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:10 +msgid "Import Status" +msgstr "Status de importación" + +#: bookwyrm/templates/import/import_status.html:11 +msgid "Back to imports" +msgstr "Volver a las importaciones" + +#: bookwyrm/templates/import/import_status.html:15 +msgid "Import started:" +msgstr "Importación ha empezado:" + +#: bookwyrm/templates/import/import_status.html:20 +msgid "Import completed:" +msgstr "Importación ha terminado:" + +#: bookwyrm/templates/import/import_status.html:24 +msgid "TASK FAILED" +msgstr "TAREA FALLÓ" + +#: bookwyrm/templates/import/import_status.html:32 +msgid "Import still in progress." +msgstr "Importación todavia en progreso" + +#: bookwyrm/templates/import/import_status.html:34 +msgid "(Hit reload to update!)" +msgstr "(¡Refresca para actualizar!)" + +#: bookwyrm/templates/import/import_status.html:41 +msgid "Failed to load" +msgstr "No se pudo cargar" + +#: bookwyrm/templates/import/import_status.html:50 +#, python-format +msgid "Jump to the bottom of the list to select the %(failed_count)s items which failed to import." +msgstr "Saltar al final de la lista para seleccionar los %(failed_count)s artículos que no se pudieron importar." + +#: bookwyrm/templates/import/import_status.html:62 +#, python-format +msgid "Line %(index)s: %(title)s by %(author)s" +msgstr "Renglón %(index)s: %(title)s por %(author)s" + +#: bookwyrm/templates/import/import_status.html:82 +msgid "Select all" +msgstr "Seleccionar todo" + +#: bookwyrm/templates/import/import_status.html:85 +msgid "Retry items" +msgstr "Reintentar ítems" + +#: bookwyrm/templates/import/import_status.html:112 +msgid "Successfully imported" +msgstr "Importado exitosamente" + +#: bookwyrm/templates/import/import_status.html:114 +msgid "Import Progress" +msgstr "Progreso de importación" + +#: bookwyrm/templates/import/import_status.html:119 +msgid "Book" +msgstr "Libro" + +#: bookwyrm/templates/import/import_status.html:122 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 +msgid "Title" +msgstr "Título" + +#: bookwyrm/templates/import/import_status.html:125 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 +msgid "Author" +msgstr "Autor/Autora" + +#: bookwyrm/templates/import/import_status.html:148 +msgid "Imported" +msgstr "Importado" + +#: bookwyrm/templates/import/tooltip.html:6 +msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account." +msgstr "Puedes descargar tus datos de GoodReads de la Página de Exportación/Importación de tu cuenta de GoodReads" + +#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8 +#: bookwyrm/templates/login.html:49 +msgid "Create an Account" +msgstr "Crear una cuenta" + +#: bookwyrm/templates/invite.html:21 +msgid "Permission Denied" +msgstr "Permiso denegado" + +#: bookwyrm/templates/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "¡Disculpa! Este código de invitación no queda válido." + +#: bookwyrm/templates/landing/about.html:7 +#, python-format +msgid "About %(site_name)s" +msgstr "Sobre %(site_name)s" + +#: bookwyrm/templates/landing/about.html:10 +#: bookwyrm/templates/landing/about.html:20 +msgid "Code of Conduct" +msgstr "Código de conducta" + +#: bookwyrm/templates/landing/about.html:13 +#: bookwyrm/templates/landing/about.html:29 +msgid "Privacy Policy" +msgstr "Política de privacidad" + +#: bookwyrm/templates/landing/landing.html:6 +msgid "Recent Books" +msgstr "Libros recientes" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Descentralizado" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "Amigable" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "Anti-corporativo" + +#: bookwyrm/templates/landing/layout.html:45 +#, python-format +msgid "Join %(name)s" +msgstr "Unirse con %(name)s" + +#: bookwyrm/templates/landing/layout.html:47 +msgid "Request an Invitation" +msgstr "Solicitar una invitación" + +#: bookwyrm/templates/landing/layout.html:49 +#, python-format +msgid "%(name)s registration is closed" +msgstr "El registro de %(name)s está cerrado" + +#: bookwyrm/templates/landing/layout.html:60 +msgid "Thank you! Your request has been received." +msgstr "¡Gracias! Tu solicitud ha sido recibido." + +#: bookwyrm/templates/landing/layout.html:82 +msgid "Your Account" +msgstr "Tu cuenta" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "Busqueda en %(site_name)s" + +#: bookwyrm/templates/layout.html:43 +msgid "Search for a book, user, or list" +msgstr "Buscar un libro o un usuario o una lista" + +#: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 +msgid "Main navigation menu" +msgstr "Menú de navigación central" + +#: bookwyrm/templates/layout.html:72 +msgid "Feed" +msgstr "Actividad" + +#: bookwyrm/templates/layout.html:106 +msgid "Your Books" +msgstr "Tus libros" + +#: bookwyrm/templates/layout.html:116 +msgid "Settings" +msgstr "Configuración" + +#: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:40 +msgid "Invites" +msgstr "Invitaciones" + +#: bookwyrm/templates/layout.html:132 +msgid "Admin" +msgstr "Admin" + +#: bookwyrm/templates/layout.html:139 +msgid "Log out" +msgstr "Cerrar sesión" + +#: bookwyrm/templates/layout.html:147 bookwyrm/templates/layout.html:148 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Notificaciones" + +#: bookwyrm/templates/layout.html:170 bookwyrm/templates/layout.html:174 +#: bookwyrm/templates/login.html:21 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Nombre de usuario:" + +#: bookwyrm/templates/layout.html:175 +msgid "password" +msgstr "contraseña" + +#: bookwyrm/templates/layout.html:176 bookwyrm/templates/login.html:40 +msgid "Forgot your password?" +msgstr "¿Olvidaste tu contraseña?" + +#: bookwyrm/templates/layout.html:179 bookwyrm/templates/login.html:7 +#: bookwyrm/templates/login.html:37 +msgid "Log in" +msgstr "Iniciar sesión" + +#: bookwyrm/templates/layout.html:187 +msgid "Join" +msgstr "Unirse" + +#: bookwyrm/templates/layout.html:221 +msgid "Successfully posted status" +msgstr "Status publicado exitosamente" + +#: bookwyrm/templates/layout.html:222 +msgid "Error posting status" +msgstr "Error en publicar status" + +#: bookwyrm/templates/layout.html:230 +msgid "About this instance" +msgstr "Sobre esta instancia" + +#: bookwyrm/templates/layout.html:234 +msgid "Contact site admin" +msgstr "Contactarse con administradores del sitio" + +#: bookwyrm/templates/layout.html:238 +msgid "Documentation" +msgstr "Documentación de Django" + +#: bookwyrm/templates/layout.html:245 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "Apoyar %(site_name)s en %(support_title)s" + +#: bookwyrm/templates/layout.html:249 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en GitHub." + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "Des-guardar" + +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Crear lista" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "Agregado y comisariado por %(username)s" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created by %(username)s" +msgstr "Creado por %(username)s" + +#: bookwyrm/templates/lists/curate.html:8 +msgid "Pending Books" +msgstr "Libros pendientes" + +#: bookwyrm/templates/lists/curate.html:11 +msgid "Go to list" +msgstr "Irse a lista" + +#: bookwyrm/templates/lists/curate.html:15 +msgid "You're all set!" +msgstr "!Está todo listo¡" + +#: bookwyrm/templates/lists/curate.html:45 +msgid "Suggested by" +msgstr "Sugerido por" + +#: bookwyrm/templates/lists/curate.html:57 +msgid "Approve" +msgstr "Aprobar" + +#: bookwyrm/templates/lists/curate.html:63 +msgid "Discard" +msgstr "Desechar" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "¿Eliminar esta lista?" + +#: bookwyrm/templates/lists/delete_list_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Esta acción no se puede deshacer" + +#: bookwyrm/templates/lists/delete_list_modal.html:15 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +msgid "Delete" +msgstr "Eliminar" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:16 +msgid "Edit List" +msgstr "Editar lista" + +#: bookwyrm/templates/lists/form.html:18 +msgid "List curation:" +msgstr "Enumerar lista de comisariado:" + +#: bookwyrm/templates/lists/form.html:21 +msgid "Closed" +msgstr "Cerrado" + +#: bookwyrm/templates/lists/form.html:22 +msgid "Only you can add and remove books to this list" +msgstr "Solo tú puedes agregar a y sacar libros de esta lista" + +#: bookwyrm/templates/lists/form.html:26 +msgid "Curated" +msgstr "De comisariado" + +#: bookwyrm/templates/lists/form.html:27 +msgid "Anyone can suggest books, subject to your approval" +msgstr "Cualquier usuario puede sugerir libros, en cuanto lo hayas aprobado" + +#: bookwyrm/templates/lists/form.html:31 +#, fuzzy +#| msgid "Open" +msgctxt "curation type" +msgid "Open" +msgstr "Abierto" + +#: bookwyrm/templates/lists/form.html:32 +msgid "Anyone can add books to this list" +msgstr "Cualquer usuario puede agregar libros a esta lista" + +#: bookwyrm/templates/lists/form.html:50 +msgid "Delete list" +msgstr "Eliminar lista" + +#: bookwyrm/templates/lists/list.html:20 +msgid "You successfully suggested a book for this list!" +msgstr "¡Has sugerido un libro para esta lista exitosamente!" + +#: bookwyrm/templates/lists/list.html:22 +msgid "You successfully added a book to this list!" +msgstr "¡Has agregado un libro a esta lista exitosamente!" + +#: bookwyrm/templates/lists/list.html:28 +msgid "This list is currently empty" +msgstr "Esta lista está vacia" + +#: bookwyrm/templates/lists/list.html:66 +#, python-format +msgid "Added by %(username)s" +msgstr "Agregado por %(username)s" + +#: bookwyrm/templates/lists/list.html:75 +msgid "List position" +msgstr "Posición" + +#: bookwyrm/templates/lists/list.html:81 +msgid "Set" +msgstr "Establecido" + +#: bookwyrm/templates/lists/list.html:91 +#: bookwyrm/templates/snippets/shelf_selector.html:26 +msgid "Remove" +msgstr "Quitar" + +#: bookwyrm/templates/lists/list.html:105 +#: bookwyrm/templates/lists/list.html:122 +msgid "Sort List" +msgstr "Ordena la lista" + +#: bookwyrm/templates/lists/list.html:115 +msgid "Direction" +msgstr "Dirección" + +#: bookwyrm/templates/lists/list.html:129 +msgid "Add Books" +msgstr "Agregar libros" + +#: bookwyrm/templates/lists/list.html:131 +msgid "Suggest Books" +msgstr "Sugerir libros" + +#: bookwyrm/templates/lists/list.html:142 +msgid "search" +msgstr "buscar" + +#: bookwyrm/templates/lists/list.html:148 +msgid "Clear search" +msgstr "Borrar búsqueda" + +#: bookwyrm/templates/lists/list.html:153 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "No se encontró ningún libro correspondiente a la búsqueda: \"%(query)s\"" + +#: bookwyrm/templates/lists/list.html:181 +msgid "Suggest" +msgstr "Sugerir" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "Guardado" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:9 +msgid "Your Lists" +msgstr "Tus listas" + +#: bookwyrm/templates/lists/lists.html:35 +msgid "All Lists" +msgstr "Todas las listas" + +#: bookwyrm/templates/lists/lists.html:39 +msgid "Saved Lists" +msgstr "Listas guardadas" + +#: bookwyrm/templates/login.html:4 +msgid "Login" +msgstr "Iniciar sesión" + +#: bookwyrm/templates/login.html:15 +msgid "Success! Email address confirmed." +msgstr "¡Éxito! Dirección de correo electrónico confirmada." + +#: bookwyrm/templates/login.html:27 bookwyrm/templates/password_reset.html:17 +#: bookwyrm/templates/snippets/register_form.html:22 +msgid "Password:" +msgstr "Contraseña:" + +#: bookwyrm/templates/login.html:62 +msgid "More about this site" +msgstr "Más sobre este sitio" + +#: bookwyrm/templates/notifications/items/add.html:24 +#, fuzzy, python-format +#| msgid " added %(book_title)s to your list \"%(list_name)s\"" +msgid "added %(book_title)s to your list \"%(list_name)s\"" +msgstr " agregó %(book_title)s a tu lista \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:31 +#, fuzzy, python-format +#| msgid " suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgid "suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr " sugirió agregar %(book_title)s a tu lista \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/boost.html:19 +#, python-format +msgid "boosted your review of %(book_title)s" +msgstr "respaldó tu reseña de %(book_title)s" + +#: bookwyrm/templates/notifications/items/boost.html:25 +#, python-format +msgid "boosted your comment on%(book_title)s" +msgstr "respaldó tu comentario en%(book_title)s" + +#: bookwyrm/templates/notifications/items/boost.html:31 +#, python-format +msgid "boosted your quote from %(book_title)s" +msgstr "respaldó tucita de %(book_title)s" + +#: bookwyrm/templates/notifications/items/boost.html:37 +#, python-format +msgid "boosted your status" +msgstr "respaldó tu status" + +#: bookwyrm/templates/notifications/items/fav.html:19 +#, python-format +msgid "favorited your review of %(book_title)s" +msgstr "le gustó tu reseña de %(book_title)s" + +#: bookwyrm/templates/notifications/items/fav.html:25 +#, fuzzy, python-format +#| msgid "favorited your comment on %(book_title)s" +msgid "favorited your comment on%(book_title)s" +msgstr "le gustó tu comentario en %(book_title)s" + +#: bookwyrm/templates/notifications/items/fav.html:31 +#, python-format +msgid "favorited your quote from %(book_title)s" +msgstr "le gustó tu cita de %(book_title)s" + +#: bookwyrm/templates/notifications/items/fav.html:37 +#, python-format +msgid "favorited your status" +msgstr "le gustó tu status" + +#: bookwyrm/templates/notifications/items/follow.html:15 +msgid "followed you" +msgstr "te siguió" + +#: bookwyrm/templates/notifications/items/follow_request.html:11 +msgid "sent you a follow request" +msgstr "te quiere seguir" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "Tu importación ha terminado." + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "mentioned you in a review of %(book_title)s" +msgstr "te mencionó en una reseña de %(book_title)s" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "mentioned you in a comment on %(book_title)s" +msgstr "te mencionó en un comentario de %(book_title)s" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "mentioned you in a quote from %(book_title)s" +msgstr "te mencionó en una cita de %(book_title)s" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "mentioned you in a status" +msgstr "te mencionó en un status" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "replied to your review of %(book_title)s" +msgstr "respondió a tu reseña de %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "replied to your comment on %(book_title)s" +msgstr "respondió a tu comentario en %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "replied to your quote from %(book_title)s" +msgstr "respondió a tu cita de %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "replied to your status" +msgstr "respondió a tu status" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation." +msgstr "Un informe nuevo se requiere moderación." + +#: bookwyrm/templates/notifications/notifications_page.html:18 +msgid "Delete notifications" +msgstr "Borrar notificaciones" + +#: bookwyrm/templates/notifications/notifications_page.html:29 +msgid "All" +msgstr "Todas" + +#: bookwyrm/templates/notifications/notifications_page.html:33 +msgid "Mentions" +msgstr "Menciones" + +#: bookwyrm/templates/notifications/notifications_page.html:45 +msgid "You're all caught up!" +msgstr "¡Estás al día!" + +#: bookwyrm/templates/password_reset.html:23 +#: bookwyrm/templates/preferences/change_password.html:18 +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Confirm password:" +msgstr "Confirmar contraseña:" + +#: bookwyrm/templates/password_reset_request.html:14 +msgid "A link to reset your password will be sent to your email address" +msgstr "Un enlace para restablecer tu contraseña se enviará a tu dirección de correo electrónico" + +#: bookwyrm/templates/password_reset_request.html:28 +msgid "Reset password" +msgstr "Restablecer contraseña" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:31 +msgid "Blocked Users" +msgstr "Usuarios bloqueados" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "No hay ningún usuario bloqueado actualmente." + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:21 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "Cambiar contraseña" + +#: bookwyrm/templates/preferences/change_password.html:14 +msgid "New password:" +msgstr "Nueva contraseña:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:26 +#: bookwyrm/templates/preferences/layout.html:24 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 +msgid "Delete Account" +msgstr "Quitar cuenta" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Permanently delete account" +msgstr "Eliminar cuenta permanentemente" + +#: bookwyrm/templates/preferences/delete_user.html:14 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "Eliminar tu cuenta no puede ser deshecho. El nombre de usuario no será disponible para registrar en el futuro." + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "Editar perfil" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:7 +msgid "Profile" +msgstr "Perfil" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:68 +msgid "Display preferences" +msgstr "Preferencias de visualización" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:106 +msgid "Privacy" +msgstr "Privacidad" + +#: bookwyrm/templates/preferences/edit_user.html:72 +msgid "Show reading goal prompt in feed:" +msgstr "Mostrar sugerencia de meta de lectura en el feed:" + +#: bookwyrm/templates/preferences/edit_user.html:76 +msgid "Show suggested users:" +msgstr "Mostrar usuarios sugeridos:" + +#: bookwyrm/templates/preferences/edit_user.html:85 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Tu cuenta se aparecerá en el directorio, y puede ser recomendado a otros usuarios de BookWyrm." + +#: bookwyrm/templates/preferences/edit_user.html:89 +msgid "Preferred Timezone: " +msgstr "Huso horario preferido" + +#: bookwyrm/templates/preferences/edit_user.html:116 +msgid "Default post privacy:" +msgstr "Privacidad de publicación por defecto:" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "Cuenta" + +#: bookwyrm/templates/preferences/layout.html:27 +msgid "Relationships" +msgstr "Relaciones" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "Terminar \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "Empezar \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "Quiero leer \"%(book_title)s\"" + +#: bookwyrm/templates/search/book.html:47 +#: bookwyrm/templates/settings/reports/reports.html:25 +#: bookwyrm/templates/snippets/announcement.html:16 +msgid "Open" +msgstr "Abierto" + +#: bookwyrm/templates/search/book.html:85 +msgid "Import book" +msgstr "Importar libro" + +#: bookwyrm/templates/search/book.html:107 +msgid "Load results from other catalogues" +msgstr "Cargar resultados de otros catálogos" + +#: bookwyrm/templates/search/book.html:111 +msgid "Manually add book" +msgstr "Agregar libro a mano" + +#: bookwyrm/templates/search/book.html:116 +msgid "Log in to import or add books." +msgstr "Iniciar una sesión para importar o agregar libros" + +#: bookwyrm/templates/search/layout.html:16 +msgid "Search query" +msgstr "Búsqueda" + +#: bookwyrm/templates/search/layout.html:19 +msgid "Search type" +msgstr "Tipo de búsqueda" + +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:46 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/layout.html:34 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 +msgid "Users" +msgstr "Usuarios" + +#: bookwyrm/templates/search/layout.html:58 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "No se encontró ningún resultado correspondiente a \"%(query)s\"" + +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 +msgid "Announcement" +msgstr "Anuncio" + +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 +msgid "Back to list" +msgstr "Volver a la lista de servidores" + +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 +msgid "Edit Announcement" +msgstr "Editar anuncio" + +#: bookwyrm/templates/settings/announcements/announcement.html:35 +msgid "Visible:" +msgstr "Visible:" + +#: bookwyrm/templates/settings/announcements/announcement.html:38 +msgid "True" +msgstr "Verdadero" + +#: bookwyrm/templates/settings/announcements/announcement.html:40 +msgid "False" +msgstr "Falso" + +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 +msgid "Start date:" +msgstr "Fecha de inicio:" + +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 +msgid "End date:" +msgstr "Fecha final:" + +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 +msgid "Active:" +msgstr "Activ@:" + +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 +msgid "Create Announcement" +msgstr "Crear anuncio" + +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 +msgid "Preview:" +msgstr "Vista preliminar:" + +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 +msgid "Content:" +msgstr "Contenido:" + +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 +msgid "Event date:" +msgstr "Fecha de evento:" + +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/layout.html:72 +msgid "Announcements" +msgstr "Anuncios" + +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 +msgid "Date added" +msgstr "Fecha agregada" + +#: bookwyrm/templates/settings/announcements/announcements.html:26 +msgid "Preview" +msgstr "Vista preliminar" + +#: bookwyrm/templates/settings/announcements/announcements.html:30 +msgid "Start date" +msgstr "Fecha de inicio" + +#: bookwyrm/templates/settings/announcements/announcements.html:34 +msgid "End date" +msgstr "Fecha final" + +#: bookwyrm/templates/settings/announcements/announcements.html:38 +#: bookwyrm/templates/settings/federation/instance_list.html:46 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:34 +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "Status" +msgstr "Status" + +#: bookwyrm/templates/settings/announcements/announcements.html:48 +msgid "active" +msgstr "activo" + +#: bookwyrm/templates/settings/announcements/announcements.html:48 +msgid "inactive" +msgstr "inactivo" + +#: bookwyrm/templates/settings/announcements/announcements.html:52 +msgid "No announcements found" +msgstr "No se encontró ningun anuncio." + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:26 +msgid "Dashboard" +msgstr "Tablero" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Total users" +msgstr "Número de usuarios" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "Activos este mes" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statuses" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "Obras" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "%(display_count)s informe abierto" +msgstr[1] "%(display_count)s informes abiertos" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "%(display_count)s solicitación de invitado" +msgstr[1] "%(display_count)s solicitaciones de invitado" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 +msgid "Instance Activity" +msgstr "Actividad de instancia" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 +msgid "Interval:" +msgstr "Intervalo:" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 +msgid "Days" +msgstr "Dias" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 +msgid "Weeks" +msgstr "Semanas" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +msgid "User signup activity" +msgstr "Actividad de inscripciones de usuarios" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:112 +msgid "Status activity" +msgstr "Actividad de status" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:118 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +#, fuzzy +#| msgid "Registration" +msgid "Registrations" +msgstr "Registración" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "Statuses publicados" + +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Suma" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "Agregar dominio" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "Dominio:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:59 +msgid "Email Blocklist" +msgstr "Lista de bloqueo de correos electrónicos" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "Cuando alguien intenta registrarse con un correo electrónico de este dominio, ningun cuenta se creerá. El proceso de registración se parecerá a funcionado." + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +msgid "Domain" +msgstr "Dominio" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "Opciones" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "%(display_count)s usuario" +msgstr[1] "%(display_count)s usuarios" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "No hay dominios de correo electrónico bloqueados actualmente" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "Agregar instancia" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +msgid "Back to instance list" +msgstr "Volver a la lista de instancias" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +msgid "Import block list" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +msgid "Instance:" +msgstr "Instancia:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Status:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versión:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "Notas:" + +#: bookwyrm/templates/settings/federation/instance.html:19 +msgid "Details" +msgstr "Detalles" + +#: bookwyrm/templates/settings/federation/instance.html:35 +#: bookwyrm/templates/user/layout.html:63 +msgid "Activity" +msgstr "Actividad" + +#: bookwyrm/templates/settings/federation/instance.html:38 +msgid "Users:" +msgstr "Usuarios:" + +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 +msgid "View all" +msgstr "Ver todos" + +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Informes:" + +#: bookwyrm/templates/settings/federation/instance.html:50 +msgid "Followed by us:" +msgstr "Seguido por nosotros:" + +#: bookwyrm/templates/settings/federation/instance.html:55 +msgid "Followed by them:" +msgstr "Seguido por ellos:" + +#: bookwyrm/templates/settings/federation/instance.html:60 +msgid "Blocked by us:" +msgstr "Bloqueado por nosotros:" + +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Notas" + +#: bookwyrm/templates/settings/federation/instance.html:75 +msgid "Edit" +msgstr "Editar" + +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "Sin notas" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 +msgid "Actions" +msgstr "Acciones" + +#: bookwyrm/templates/settings/federation/instance.html:98 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/templates/settings/federation/instance.html:99 +msgid "All users from this instance will be deactivated." +msgstr "Todos los usuarios en esta instancia serán desactivados." + +#: bookwyrm/templates/settings/federation/instance.html:104 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Desbloquear" + +#: bookwyrm/templates/settings/federation/instance.html:105 +msgid "All users from this instance will be re-activated." +msgstr "Todos los usuarios en esta instancia serán re-activados." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +msgid "Import Blocklist" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "¡Meta logrado!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +msgid "Successfully blocked:" +msgstr "Se bloqueó exitosamente:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "Falló:" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:45 +msgid "Federated Instances" +msgstr "Instancias federalizadas" + +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "Nombre de instancia" + +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Software" +msgstr "Software" + +#: bookwyrm/templates/settings/federation/instance_list.html:63 +msgid "No instances found" +msgstr "No se encontró ningun anuncio." + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "Solicitudes de invitación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "Solicitudes de invitación ignoradas" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "Fecha solicitada" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "Fecha de aceptación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "Correo electronico" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +msgid "Action" +msgstr "Acción" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "No requests" +msgstr "No solicitudes" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "Aceptado" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "Enviado" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "Solicitado" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "Enviar invitación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "Re-enviar invitación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "Ignorar" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "Des-ignorar" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +msgid "Back to pending requests" +msgstr "Volver a las solicitudes pendientes" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "Ver solicitudes ignoradas" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "Generar nuevo invitación" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "Vencimiento:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "Límite de uso:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "Crear invitación" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Enlace" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "Vence" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "Número máximo de usos" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "Número de usos" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "No invitaciónes activas" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "Agregar dirección IP" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "Use los bloqueos de dirección IP con cuidado, y considere usar los bloqueos solo temporalmente, ya que las direcciones IP a menudo son compartidas o cambian de dueños. Si bloqueas tu propia IP, no serás capaz de acceder a esta página" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "Dirección IP" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:63 +msgid "IP Address Blocklist" +msgstr "Lista de direcciones IP bloqueadas" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "Cualquier tráfico desde esta dirección IP obtendrá una respuesta 404 cuando trate de acceder cualquier parte de la aplicación" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "Dirección" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "No hay ningúna dirección IP bloqueada actualmente." + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 +msgid "You can block IP ranges using CIDR syntax." +msgstr "Puedes bloquear rangos de IP usando la sintaxis CIDR." + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "Adminstración" + +#: bookwyrm/templates/settings/layout.html:29 +msgid "Manage Users" +msgstr "Administrar usuarios" + +#: bookwyrm/templates/settings/layout.html:51 +msgid "Moderation" +msgstr "Moderación" + +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "Informes" + +#: bookwyrm/templates/settings/layout.html:68 +msgid "Instance Settings" +msgstr "Configuración de instancia" + +#: bookwyrm/templates/settings/layout.html:76 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "Configuración de sitio" + +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "Reportar #%(report_id)s: %(username)s" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "Volver a los informes" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "Comentarios de moderador" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "Comentario" + +#: bookwyrm/templates/settings/reports/report.html:46 +msgid "Reported statuses" +msgstr "Statuses reportados" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "Ningún estatus reportado" + +#: bookwyrm/templates/settings/reports/report.html:54 +msgid "Status has been deleted" +msgstr "Status ha sido eliminado" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "No se proporcionó notas" + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, python-format +msgid "Reported by %(username)s" +msgstr "Reportado por %(username)s" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "Reabrir" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "Resolver" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Informes: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Informes: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "Resuelto" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "No se encontró ningún informe." + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 +msgid "Instance Info" +msgstr "Información de instancia" + +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 +msgid "Images" +msgstr "Imagenes" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 +msgid "Footer Content" +msgstr "Contenido del pie de página" + +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 +msgid "Registration" +msgstr "Registración" + +#: bookwyrm/templates/settings/site.html:24 +msgid "Instance Name:" +msgstr "Nombre de instancia:" + +#: bookwyrm/templates/settings/site.html:28 +msgid "Tagline:" +msgstr "Lema:" + +#: bookwyrm/templates/settings/site.html:32 +msgid "Instance description:" +msgstr "Descripción de instancia:" + +#: bookwyrm/templates/settings/site.html:36 +msgid "Short description:" +msgstr "Descripción corta:" + +#: bookwyrm/templates/settings/site.html:37 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." +msgstr "Utilizado cuando la instancia se ve de una vista previa en joinbookwyrm.com. No es compatible con html o markdown." + +#: bookwyrm/templates/settings/site.html:41 +msgid "Code of conduct:" +msgstr "Código de conducta:" + +#: bookwyrm/templates/settings/site.html:45 +msgid "Privacy Policy:" +msgstr "Política de privacidad:" + +#: bookwyrm/templates/settings/site.html:57 +msgid "Logo:" +msgstr "Logo:" + +#: bookwyrm/templates/settings/site.html:61 +msgid "Logo small:" +msgstr "Logo pequeño:" + +#: bookwyrm/templates/settings/site.html:65 +msgid "Favicon:" +msgstr "Favicon:" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Support link:" +msgstr "Enlace de apoyo:" + +#: bookwyrm/templates/settings/site.html:81 +msgid "Support title:" +msgstr "Título de apoyo:" + +#: bookwyrm/templates/settings/site.html:85 +msgid "Admin email:" +msgstr "Correo electrónico de administradorx:" + +#: bookwyrm/templates/settings/site.html:89 +msgid "Additional info:" +msgstr "Más informacion:" + +#: bookwyrm/templates/settings/site.html:103 +msgid "Allow registration" +msgstr "Permitir registración" + +#: bookwyrm/templates/settings/site.html:109 +msgid "Allow invite requests" +msgstr "Permitir solicitudes de invitación" + +#: bookwyrm/templates/settings/site.html:115 +msgid "Require users to confirm email address" +msgstr "Requerir a usuarios a confirmar dirección de correo electrónico" + +#: bookwyrm/templates/settings/site.html:117 +msgid "(Recommended if registration is open)" +msgstr "(Recomendado si la registración es abierta)" + +#: bookwyrm/templates/settings/site.html:120 +msgid "Registration closed text:" +msgstr "Texto de registración cerrada:" + +#: bookwyrm/templates/settings/site.html:124 +msgid "Invite request text:" +msgstr "Texto de solicitud de invitación:" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +msgid "Permanently delete user" +msgstr "Eliminar usuario permanentemente" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "¿Estás seguro que quieres eliminar la cuenta de %(username)s's? Esta acción no se puede deshacer. Para continuar, por favor, ingrese tu contraseña para confirmar eliminación." + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "Tu contraseña:" + +#: bookwyrm/templates/settings/users/user.html:7 +msgid "Back to users" +msgstr "Volver a usuarios" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "Usuarios %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "Nombre de usuario" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +msgid "Date Added" +msgstr "Fecha agregada" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "Actividad reciente" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +msgid "Remote instance" +msgstr "Instancia remota" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "Activ@" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "Inactiv@" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "No establecido" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "Ver perfil de usuario" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "Local" + +#: bookwyrm/templates/settings/users/user_info.html:38 +msgid "Remote" +msgstr "Remoto" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "Detalles" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "Email:" +msgstr "Correo electronico:" + +#: bookwyrm/templates/settings/users/user_info.html:61 +msgid "(View reports)" +msgstr "(Ver informes)" + +#: bookwyrm/templates/settings/users/user_info.html:67 +msgid "Blocked by count:" +msgstr "Recuento de usuarios que han bloqueado este usuario:" + +#: bookwyrm/templates/settings/users/user_info.html:70 +msgid "Last active date:" +msgstr "Fecha de actividad más reciente:" + +#: bookwyrm/templates/settings/users/user_info.html:73 +msgid "Manually approved followers:" +msgstr "Seguidores aprobados a mano:" + +#: bookwyrm/templates/settings/users/user_info.html:76 +msgid "Discoverable:" +msgstr "Reconocible:" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Deactivation reason:" +msgstr "Razón de desactivación:" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "Detalles de instancia" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "Ver instancia" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "Eliminado permanentemente" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "Enviar mensaje directo" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "Suspender usuario" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "Des-suspender usuario" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "Nivel de acceso:" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "Crear estante" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "Editar estante" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:55 +msgid "All books" +msgstr "Todos los libros" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "Crear estante" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "(mostrando %(start)s-%(end)s)" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "Editar estante" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "Eliminar estante" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "Archivado" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "Empezado" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "Terminado" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "Este estante está vacio." + +#: bookwyrm/templates/snippets/announcement.html:31 +#, python-format +msgid "Posted by %(username)s" +msgstr "Publicado por %(username)s" + +#: bookwyrm/templates/snippets/authors.html:22 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:61 +msgid "No cover" +msgstr "Sin portada" + +#: bookwyrm/templates/snippets/book_titleby.html:6 +#, python-format +msgid "%(title)s by" +msgstr "%(title)s por" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "Respaldar" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "Des-respaldar" + +#: bookwyrm/templates/snippets/create_status.html:17 +msgid "Review" +msgstr "Reseña" + +#: bookwyrm/templates/snippets/create_status.html:39 +msgid "Quote" +msgstr "Cita" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "Algunos pensamientos sobre el libro" + +#: bookwyrm/templates/snippets/create_status/comment.html:26 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 +msgid "Progress:" +msgstr "Progreso:" + +#: bookwyrm/templates/snippets/create_status/comment.html:52 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "páginas" + +#: bookwyrm/templates/snippets/create_status/comment.html:58 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "por ciento" + +#: bookwyrm/templates/snippets/create_status/comment.html:65 +#, python-format +msgid "of %(pages)s pages" +msgstr "de %(pages)s páginas" + +#: bookwyrm/templates/snippets/create_status/content_field.html:17 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:52 +#: bookwyrm/templates/snippets/status/layout.html:53 +msgid "Reply" +msgstr "Respuesta" + +#: bookwyrm/templates/snippets/create_status/content_field.html:17 +msgid "Content" +msgstr "Contenido" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:10 +msgid "Content warning:" +msgstr "Advertencia de contenido:" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers ahead!" +msgstr "¡Advertencia, ya vienen spoilers!" + +#: bookwyrm/templates/snippets/create_status/content_warning_toggle.html:13 +msgid "Include spoiler alert" +msgstr "Incluir alerta de spoiler" + +#: bookwyrm/templates/snippets/create_status/layout.html:41 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "Comentario:" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:8 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +msgid "Private" +msgstr "Privada" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "Compartir" + +#: bookwyrm/templates/snippets/create_status/quotation.html:17 +msgid "Quote:" +msgstr "Cita:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:25 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "Un extracto de '%(book_title)s'" + +#: bookwyrm/templates/snippets/create_status/quotation.html:32 +msgid "Position:" +msgstr "Posición:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:45 +msgid "On page:" +msgstr "En la página:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:51 +msgid "At percent:" +msgstr "Al por ciento:" + +#: bookwyrm/templates/snippets/create_status/review.html:25 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "Tu reseña de '%(book_title)s'" + +#: bookwyrm/templates/snippets/create_status/review.html:40 +msgid "Review:" +msgstr "Reseña:" + +#: bookwyrm/templates/snippets/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "¿Eliminar estas fechas de lectura?" + +#: bookwyrm/templates/snippets/delete_readthrough_modal.html:7 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "Estás eliminando esta lectura y sus %(count)s actualizaciones de progreso asociados." + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "Me gusta" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "Quitar me gusta" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:7 +msgid "Show filters" +msgstr "Mostrar filtros" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:9 +msgid "Hide filters" +msgstr "Ocultar filtros" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:22 +msgid "Apply filters" +msgstr "Aplicar filtros" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:26 +msgid "Clear filters" +msgstr "Borrar filtros" + +#: bookwyrm/templates/snippets/follow_button.html:14 +#, python-format +msgid "Follow @%(username)s" +msgstr "Seguir @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:16 +msgid "Follow" +msgstr "Seguir" + +#: bookwyrm/templates/snippets/follow_button.html:25 +msgid "Undo follow request" +msgstr "Des-enviar solicitud de seguidor" + +#: bookwyrm/templates/snippets/follow_button.html:30 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "Dejar de seguir @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:32 +msgid "Unfollow" +msgstr "Dejar de seguir" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +msgid "Accept" +msgstr "Aceptar" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:13 +msgid "No rating" +msgstr "No calificación" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "%(half_rating)s estrella" +msgstr[1] "%(half_rating)s estrellas" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:7 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "%(rating)s estrella" +msgstr[1] "%(rating)s estrellas" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "estableció una meta de leer %(counter)s libro en %(year)s" +msgstr[1] "estableció una meta de leer %(counter)s libros en %(year)s" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "reseñó %(title)s: %(display_rating)s estrella" +msgstr[1] "reseñó %(title)s: %(display_rating)s estrellas" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "Reseña de \"%(book_title)s\" (%(display_rating)s estrella): %(review_title)s" +msgstr[1] "Reseña de \"%(book_title)s\" (%(display_rating)s estrellas): %(review_title)s" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:8 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "Reseña de \"%(book_title)s\": %(review_title)s" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "Establece una meta para cuantos libros leerás en %(year)s, y seguir tu progreso durante el año." + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "Meta de lectura:" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "libros" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "Privacidad de meta:" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "Compartir con tu feed" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "Establecer meta" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "%(percent)s%% terminado!" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "Has leído %(read_count)s de %(goal_count)s libros." + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "%(username)s ha leído %(read_count)s de %(goal_count)s libros." + +#: bookwyrm/templates/snippets/page_text.html:4 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "página %(page)s de %(total_pages)s" + +#: bookwyrm/templates/snippets/page_text.html:6 +#, python-format +msgid "page %(page)s" +msgstr "página %(page)s" + +#: bookwyrm/templates/snippets/pagination.html:12 +msgid "Previous" +msgstr "Anterior" + +#: bookwyrm/templates/snippets/pagination.html:23 +msgid "Next" +msgstr "Siguiente" + +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +msgid "Public" +msgstr "Público" + +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +msgid "Unlisted" +msgstr "Privado" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "Solo seguidores" + +#: bookwyrm/templates/snippets/privacy_select.html:6 +msgid "Post privacy" +msgstr "Privacidad de publicación" + +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Seguidores" + +#: bookwyrm/templates/snippets/rate_action.html:4 +msgid "Leave a rating" +msgstr "Da una calificación" + +#: bookwyrm/templates/snippets/rate_action.html:19 +msgid "Rate" +msgstr "Calificar" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "Terminar \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 +#: bookwyrm/templates/snippets/readthrough_form.html:7 +msgid "Started reading" +msgstr "Lectura se empezó" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 +msgid "Finished reading" +msgstr "Lectura se terminó" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "(Opcional)" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:5 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:50 +msgid "Update progress" +msgstr "Progreso de actualización" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "Empezar \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "Quiero leer \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/readthrough_form.html:14 +msgid "Progress" +msgstr "Progreso" + +#: bookwyrm/templates/snippets/register_form.html:32 +msgid "Sign Up" +msgstr "Inscribirse" + +#: bookwyrm/templates/snippets/report_button.html:6 +msgid "Report" +msgstr "Reportar" + +#: bookwyrm/templates/snippets/report_modal.html:6 +#, python-format +msgid "Report @%(username)s" +msgstr "Reportar @%(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "Este informe se enviará a los moderadores de %(site_name)s para la revisión." + +#: bookwyrm/templates/snippets/report_modal.html:24 +msgid "More info about this report:" +msgstr "Más información sobre este informe:" + +#: bookwyrm/templates/snippets/shelf_selector.html:4 +msgid "Move book" +msgstr "Mover libro" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "Más estantes" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:24 +msgid "Start reading" +msgstr "Empezar leer" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:29 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:36 +msgid "Want to read" +msgstr "Quiero leer" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:62 +#, python-format +msgid "Remove from %(name)s" +msgstr "Quitar de %(name)s" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:30 +msgid "Finish reading" +msgstr "Terminar de leer" + +#: bookwyrm/templates/snippets/status/content_status.html:72 +msgid "Content warning" +msgstr "Advertencia de contenido:" + +#: bookwyrm/templates/snippets/status/content_status.html:79 +msgid "Show status" +msgstr "Ver status" + +#: bookwyrm/templates/snippets/status/content_status.html:101 +#, python-format +msgid "(Page %(page)s)" +msgstr "(Página %(page)s)" + +#: bookwyrm/templates/snippets/status/content_status.html:103 +#, python-format +msgid "(%(percent)s%%)" +msgstr "(%(percent)s%%)" + +#: bookwyrm/templates/snippets/status/content_status.html:125 +msgid "Open image in new window" +msgstr "Abrir imagen en una nueva ventana" + +#: bookwyrm/templates/snippets/status/content_status.html:144 +msgid "Hide status" +msgstr "Ocultar status" + +#: bookwyrm/templates/snippets/status/headers/comment.html:2 +#, python-format +msgid "commented on %(book)s" +msgstr "comentó en \"%(book)s\"" + +#: bookwyrm/templates/snippets/status/headers/note.html:15 +#, python-format +msgid "replied to %(username)s's status" +msgstr "respondió al status de %(username)s " + +#: bookwyrm/templates/snippets/status/headers/quotation.html:2 +#, python-format +msgid "quoted %(book)s" +msgstr "citó a %(book)s" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "calificó %(book)s:" + +#: bookwyrm/templates/snippets/status/headers/read.html:7 +#, python-format +msgid "finished reading %(book)s" +msgstr "terminó de leer %(book)s" + +#: bookwyrm/templates/snippets/status/headers/reading.html:7 +#, python-format +msgid "started reading %(book)s" +msgstr "empezó a leer %(book)s" + +#: bookwyrm/templates/snippets/status/headers/review.html:3 +#, python-format +msgid "reviewed %(book)s" +msgstr "reseñó a %(book)s" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:7 +#, python-format +msgid "%(username)s wants to read %(book)s" +msgstr "%(username)s quiere leer %(book)s" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "Eliminar status" + +#: bookwyrm/templates/snippets/status/layout.html:56 +#: bookwyrm/templates/snippets/status/layout.html:57 +msgid "Boost status" +msgstr "Respaldar status" + +#: bookwyrm/templates/snippets/status/layout.html:60 +#: bookwyrm/templates/snippets/status/layout.html:61 +msgid "Like status" +msgstr "Me gusta status" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "respaldó" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "Más opciones" + +#: bookwyrm/templates/snippets/status/status_options.html:26 +msgid "Delete & re-draft" +msgstr "Eliminar y recomponer" + +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s seguidor que sigues" +msgstr[1] "%(mutuals)s seguidores que sigues" + +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s libro en tus estantes" +msgstr[1] "%(shared_books)s libros en tus estantes" + +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:36 +msgid "Follows you" +msgstr "Te sigue" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "Cambiar a esta edición" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "En orden ascendente" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "En orden descendente" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "Mostrar más" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "Mostrar menos" + +#: bookwyrm/templates/user/books_header.html:5 +#, python-format +msgid "%(username)s's books" +msgstr "Los libros de %(username)s" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s Progreso de la meta de lectura" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "Editar meta" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s no ha establecido una meta de lectura para %(year)s." + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "Tus libros de %(year)s" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "Los libros de %(username)s para %(year)s" + +#: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 +msgid "User Profile" +msgstr "Perfil de usuario" + +#: bookwyrm/templates/user/layout.html:44 +msgid "Follow Requests" +msgstr "Solicitudes de seguidor" + +#: bookwyrm/templates/user/layout.html:69 +msgid "Reading Goal" +msgstr "Meta de lectura" + +#: bookwyrm/templates/user/lists.html:11 +#, python-format +msgid "Lists: %(username)s" +msgstr "Listas: %(username)s" + +#: bookwyrm/templates/user/lists.html:17 bookwyrm/templates/user/lists.html:29 +msgid "Create list" +msgstr "Crear lista" + +#: bookwyrm/templates/user/relationships/followers.html:12 +#, python-format +msgid "%(username)s has no followers" +msgstr "%(username)s no tiene seguidores" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "Siguiendo" + +#: bookwyrm/templates/user/relationships/following.html:12 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s no sigue a nadie" + +#: bookwyrm/templates/user/user.html:16 +msgid "Edit profile" +msgstr "Editar perfil" + +#: bookwyrm/templates/user/user.html:33 +#, python-format +msgid "View all %(size)s" +msgstr "Ver todos los %(size)s" + +#: bookwyrm/templates/user/user.html:46 +msgid "View all books" +msgstr "Ver todos los libros" + +#: bookwyrm/templates/user/user.html:59 +msgid "User Activity" +msgstr "Actividad de usuario" + +#: bookwyrm/templates/user/user.html:63 +msgid "RSS feed" +msgstr "Feed RSS" + +#: bookwyrm/templates/user/user.html:74 +msgid "No activities yet!" +msgstr "¡Aún no actividades!" + +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "Unido %(date)s" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(counter)s follower" +msgid_plural "%(counter)s followers" +msgstr[0] "%(counter)s seguidor" +msgstr[1] "%(counter)s seguidores" + +#: bookwyrm/templates/user/user_preview.html:27 +#, python-format +msgid "%(counter)s following" +msgstr "%(counter)s siguiendo" + +#: bookwyrm/templates/user/user_preview.html:34 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "%(mutuals_display)s seguidor que sigues" +msgstr[1] "%(mutuals_display)s seguidores que sigues" + +#: bookwyrm/templates/user/user_preview.html:38 +msgid "No followers you follow" +msgstr "Ningún seguidor que tu sigues" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +msgid "File exceeds maximum size: 10MB" +msgstr "Archivo excede el tamaño máximo: 10MB" + +#: bookwyrm/templatetags/utilities.py:31 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "%(title)s: %(subtitle)s" + +#: bookwyrm/views/import_data.py:67 +msgid "Not a valid csv file" +msgstr "No un archivo csv válido" + +#: bookwyrm/views/login.py:69 +msgid "Username or password are incorrect" +msgstr "Nombre de usuario o contraseña es incorrecta" + +#: bookwyrm/views/password.py:32 +msgid "No user with that email address was found." +msgstr "No se pudo encontrar un usuario con esa dirección de correo electrónico." + +#: bookwyrm/views/password.py:41 +#, python-brace-format +msgid "A password reset link was sent to {email}" +msgstr "Un enlace para reestablecer tu contraseña se envió a {email}" + +#: bookwyrm/views/rss_feed.py:35 +#, python-brace-format +msgid "Status updates from {obj.display_name}" +msgstr "Actualizaciones de status de {obj.display_name}" + +#~ msgid "German" +#~ msgstr "Aléman" + +#~ msgid "Spanish" +#~ msgstr "Español" + +#~ msgid "French" +#~ msgstr "Francés" + +#~ msgid "Update shelf" +#~ msgstr "Actualizar estante" + +#~ msgid "%(count)d uses" +#~ msgstr "%(count)d usos" + +#~ msgid "This instance is closed" +#~ msgstr "Esta instancia está cerrada." + +#~ msgid "Contact an administrator to get an invite" +#~ msgstr "Contactar a unx administradorx para recibir una invitación" + +#~ msgid "Spoiler alert:" +#~ msgstr "Alerta de spoiler:" + +#~ msgid "Date federated" +#~ msgstr "Fecha de federalización" + +#~ msgid "Search Results for \"%(query)s\"" +#~ msgstr "Resultados de búsqueda por \"%(query)s\"" + +#~ msgid "Matching Books" +#~ msgstr "Libros correspondientes" + +#~ msgid "Local Timeline" +#~ msgstr "Línea temporal local" + +#~ msgid "Federated Timeline" +#~ msgstr "Línea temporal federalizado" + +#~ msgid "Federated Servers" +#~ msgstr "Servidores federalizados" + +#~ msgid "Server name" +#~ msgstr "Nombre de servidor" + +#~ msgid "Add server" +#~ msgstr "Agregar servidor" + +#~ msgid "Remote server" +#~ msgstr "Quitar servidor" + +#, fuzzy +#~| msgid "BookWyrm users" +#~ msgid "BookWyrm\\" +#~ msgstr "Usuarios de BookWyrm" + +#, fuzzy +#~| msgid "Show more" +#~ msgid "Show" +#~ msgstr "Mostrar más" + +#~ msgid "ambiguous option: %(option)s could match %(matches)s" +#~ msgstr "opción ambiguo: %(option)s pudiera coincidir con %(matches)s" + +#~ msgid "Messages" +#~ msgstr "Mensajes" + +#~ msgid "Site Maps" +#~ msgstr "Mapas de sitio" + +#~ msgid "Static Files" +#~ msgstr "Archivos estáticos" + +#~ msgid "Syndication" +#~ msgstr "Sindicación" + +#~ msgid "That page number is not an integer" +#~ msgstr "Ese numero de pagina no es un entero" + +#~ msgid "That page number is less than 1" +#~ msgstr "Ese numero de pagina es menos que uno" + +#~ msgid "That page contains no results" +#~ msgstr "Esa pagina no contiene resultados" + +#~ msgid "Enter a valid URL." +#~ msgstr "Ingrese una URL válida." + +#~ msgid "Enter a valid integer." +#~ msgstr "Ingrese un entero válido." + +#~ msgid "Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +#~ msgstr "Ingrese un “slug” válido que consiste de letras, numeros, guiones bajos, o guiones" + +#~ msgid "Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or hyphens." +#~ msgstr "Ingrese un “slug” válido que consiste de letras Unicode, numeros, guiones bajos, o guiones" + +#~ msgid "Enter a valid IPv4 address." +#~ msgstr "Ingrese una dirección IPv4 válida." + +#~ msgid "Enter a valid IPv6 address." +#~ msgstr "Ingrese una dirección IPv6 válida." + +#~ msgid "Enter a valid IPv4 or IPv6 address." +#~ msgstr "Ingrese una dirección IPv4 o IPv6 válida." + +#~ msgid "Enter only digits separated by commas." +#~ msgstr "Ingrese solo digitos separados por comas." + +#~ msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +#~ msgstr "Asegura que este valor es %(limit_value)s (es %(show_value)s)." + +#~ msgid "Ensure this value is less than or equal to %(limit_value)s." +#~ msgstr "Asegura que este valor es menor que o iguala a %(limit_value)s." + +#~ msgid "Ensure this value is greater than or equal to %(limit_value)s." +#~ msgstr "Asegura que este valor es más que o que iguala a %(limit_value)s." + +#~ msgid "Ensure this value has at least %(limit_value)d character (it has %(show_value)d)." +#~ msgid_plural "Ensure this value has at least %(limit_value)d characters (it has %(show_value)d)." +#~ msgstr[0] "Verifica que este valor tiene por lo menos %(limit_value)d carácter. (Tiene %(show_value)d).)" +#~ msgstr[1] "Verifica que este valor tiene por lo menos %(limit_value)d caracteres. (Tiene %(show_value)d).)" + +#~ msgid "Ensure this value has at most %(limit_value)d character (it has %(show_value)d)." +#~ msgid_plural "Ensure this value has at most %(limit_value)d characters (it has %(show_value)d)." +#~ msgstr[0] "Verifica que este valor tiene a lo sumo %(limit_value)d carácter. (Tiene %(show_value)d).)" +#~ msgstr[1] "Verifica que este valor tiene a lo sumo %(limit_value)d caracteres. (Tiene %(show_value)d).)" + +#~ msgid "Enter a number." +#~ msgstr "Ingrese un número." + +#~ msgid "Ensure that there are no more than %(max)s digit in total." +#~ msgid_plural "Ensure that there are no more than %(max)s digits in total." +#~ msgstr[0] "Verifica que no hay más que %(max)s digito en total." +#~ msgstr[1] "Verifica que no hay más que %(max)s digitos en total." + +# is +#~ msgid "Ensure that there are no more than %(max)s decimal place." +#~ msgid_plural "Ensure that there are no more than %(max)s decimal places." +#~ msgstr[0] "Verifica que no hay más que %(max)s cifra decimal." +#~ msgstr[1] "Verifica que no hay más que %(max)s cifras decimales." + +#~ msgid "Ensure that there are no more than %(max)s digit before the decimal point." +#~ msgid_plural "Ensure that there are no more than %(max)s digits before the decimal point." +#~ msgstr[0] "Verifica que no hay más que %(max)s digito antes de la coma decimal." +#~ msgstr[1] "Verifica que no hay más que %(max)s digitos antes de la coma decimal." + +#~ msgid "File extension “%(extension)s” is not allowed. Allowed extensions are: %(allowed_extensions)s." +#~ msgstr "No se permite la extensión de archivo “%(extension)s”. Extensiones permitidas son: %(allowed_extensions)s." + +#~ msgid "Null characters are not allowed." +#~ msgstr "No se permiten caracteres nulos" + +#~ msgid "and" +#~ msgstr "y" + +#~ msgid "%(model_name)s with this %(field_labels)s already exists." +#~ msgstr "Ya existe %(model_name)s con este %(field_labels)s." + +#~ msgid "Value %(value)r is not a valid choice." +#~ msgstr "El valor %(value)s no es una opción válida." + +#~ msgid "This field cannot be blank." +#~ msgstr "Este campo no puede ser vacio." + +#~ msgid "%(model_name)s with this %(field_label)s already exists." +#~ msgstr "Ya existe %(model_name)s con este %(field_labels)s." + +#~ msgid "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +#~ msgstr "%(field_label)s deben ser unicos por %(date_field_label)s %(lookup_type)s." + +#~ msgid "Field of type: %(field_type)s" +#~ msgstr "Campo de tipo: %(field_type)s" + +#~ msgid "“%(value)s” value must be either True or False." +#~ msgstr "“%(value)s” valor debe ser o verdadero o falso." + +#~ msgid "“%(value)s” value must be either True, False, or None." +#~ msgstr "%(value)s” valor debe ser o True, False, o None." + +#~ msgid "Boolean (Either True or False)" +#~ msgstr "Booleano (O True O False)" + +#~ msgid "String (up to %(max_length)s)" +#~ msgstr "Cadena (máximo de %(max_length)s caracteres)" + +#~ msgid "Comma-separated integers" +#~ msgstr "Enteros separados por comas" + +#~ msgid "“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD format." +#~ msgstr "“%(value)s” valor tiene un formato de fecha inválido. Hay que estar de formato YYYY-MM-DD." + +#~ msgid "“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid date." +#~ msgstr "“%(value)s” valor tiene el formato correcto (YYYY-MM-DD) pero la fecha es invalida." + +#~ msgid "Date (without time)" +#~ msgstr "Fecha (sin la hora)" + +#~ msgid "“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ] format." +#~ msgstr "“%(value)s” valor tiene un formato invalido. Debe estar en formato YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#~ msgid "“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) but it is an invalid date/time." +#~ msgstr "“%(value)s” valor tiene el formato correcto (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) pero es una fecha/hora invalida." + +#~ msgid "Date (with time)" +#~ msgstr "Fecha (con la hora)" + +#~ msgid "“%(value)s” value must be a decimal number." +#~ msgstr "El valor de “%(value)s” debe ser un número decimal." + +#~ msgid "Decimal number" +#~ msgstr "Número decimal" + +#~ msgid "“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[.uuuuuu] format." +#~ msgstr "“%(value)s” valor tiene un formato invalido. Debe estar en formato [DD] [[HH:]MM:]ss[.uuuuuu]." + +#~ msgid "Email address" +#~ msgstr "Dirección de correo electrónico" + +#~ msgid "File path" +#~ msgstr "Ruta de archivo" + +#~ msgid "“%(value)s” value must be a float." +#~ msgstr "%(value)s no es un usuario válido" + +#~ msgid "Floating point number" +#~ msgstr "Número de coma flotante" + +#~ msgid "“%(value)s” value must be an integer." +#~ msgstr "“%(value)s” valor debe ser un entero." + +#~ msgid "Big (8 byte) integer" +#~ msgstr "Entero grande (8 byte)" + +#~ msgid "IPv4 address" +#~ msgstr "Dirección IPv4" + +#~ msgid "“%(value)s” value must be either None, True or False." +#~ msgstr "Valor “%(value)s” debe ser o None, True, o False." + +#~ msgid "Boolean (Either True, False or None)" +#~ msgstr "Booleano (O True, Falso, o None)" + +#~ msgid "Positive integer" +#~ msgstr "Entero positivo" + +#~ msgid "Positive small integer" +#~ msgstr "Entero positivo pequeño " + +#~ msgid "Slug (up to %(max_length)s)" +#~ msgstr "Slug (máximo de %(max_length)s)" + +#~ msgid "Small integer" +#~ msgstr "Entero pequeño" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] format." +#~ msgstr "“%(value)s” valor tiene un formato invalido. Debe estar en formato HH:MM[:ss[.uuuuuu]]." + +#~ msgid "“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an invalid time." +#~ msgstr "“%(value)s” valor tiene el formato correcto (HH:MM[:ss[.uuuuuu]]) pero es una hora invalida." + +#~ msgid "Time" +#~ msgstr "Tiempo" + +#~ msgid "URL" +#~ msgstr "URL" + +#~ msgid "Raw binary data" +#~ msgstr "Datos binarios sin procesar" + +#~ msgid "“%(value)s” is not a valid UUID." +#~ msgstr "%(value)s no es una UUID válida." + +#~ msgid "Universally unique identifier" +#~ msgstr "Identificador universalmente único" + +#~ msgid "File" +#~ msgstr "Archivo" + +#~ msgid "Image" +#~ msgstr "Imágen" + +#~ msgid "%(model)s instance with %(field)s %(value)r does not exist." +#~ msgstr "%(model)s instancia con %(field)s %(value)r no existe." + +#~ msgid "Foreign Key (type determined by related field)" +#~ msgstr "Clave externa (tipo determinado por campo relacionado)" + +#~ msgid "One-to-one relationship" +#~ msgstr "Relación uno-a-uno" + +#~ msgid "%(from)s-%(to)s relationship" +#~ msgstr "relación %(from)s-%(to)s" + +#~ msgid "%(from)s-%(to)s relationships" +#~ msgstr "relaciones %(from)s-%(to)s" + +#~ msgid "Many-to-many relationship" +#~ msgstr "Relaciones mucho-a-mucho" + +#~ msgid "This field is required." +#~ msgstr "Este campo es requerido." + +#~ msgid "Enter a whole number." +#~ msgstr "Ingrese un número entero." + +#~ msgid "Enter a valid date." +#~ msgstr "Ingrese una fecha válida." + +#~ msgid "Enter a valid time." +#~ msgstr "Ingrese una hora válida." + +#~ msgid "Enter a valid date/time." +#~ msgstr "Ingrese una fecha/hora válida." + +#~ msgid "Enter a valid duration." +#~ msgstr "Ingrese una duración válida." + +#~ msgid "The number of days must be between {min_days} and {max_days}." +#~ msgstr "El número de dias debe ser entre {min_days} y {max_days}." + +#~ msgid "No file was submitted. Check the encoding type on the form." +#~ msgstr "No se aceptó ningun archivo. Verfica el tipo de codificación en el formulario." + +#~ msgid "No file was submitted." +#~ msgstr "No se aceptó ningun archivo." + +#~ msgid "The submitted file is empty." +#~ msgstr "El archivo enviado está vacio." + +#~ msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +#~ msgid_plural "Ensure this filename has at most %(max)d characters (it has %(length)d)." +#~ msgstr[0] "Verifica que este nombre de archivo no tiene más que %(max)d carácter. (Tiene %(length)d)." +#~ msgstr[1] "Verifica que este nombre de archivo no tiene más que %(max)d caracteres. (Tiene %(length)d)." + +#~ msgid "Please either submit a file or check the clear checkbox, not both." +#~ msgstr "Por favor, o envia un archivo o marca la casilla vacia, no los dos." + +#~ msgid "Upload a valid image. The file you uploaded was either not an image or a corrupted image." +#~ msgstr "Subir una imagen válida. El archivo que subiste o no fue imagen o fue corrupto." + +#~ msgid "Select a valid choice. %(value)s is not one of the available choices." +#~ msgstr "Selecciona una opción válida. %(value)s no es una de las opciones disponibles." + +#~ msgid "Enter a list of values." +#~ msgstr "Ingrese una lista de valores." + +#~ msgid "Enter a complete value." +#~ msgstr "Ingresa un valor completo." + +#~ msgid "Enter a valid UUID." +#~ msgstr "Ingrese una UUID válida." + +#~ msgid ":" +#~ msgstr ":" + +#~ msgid "(Hidden field %(name)s) %(error)s" +#~ msgstr "(Campo oculto %(name)s) %(error)s" + +#~ msgid "ManagementForm data is missing or has been tampered with" +#~ msgstr "Datos de ManagementForm está ausento o ha sido corrompido" + +#~ msgid "Please submit %d or fewer forms." +#~ msgid_plural "Please submit %d or fewer forms." +#~ msgstr[0] "Por favor, enviar %d o menos formularios." +#~ msgstr[1] "Por favor, enviar %d o menos formularios." + +#~ msgid "Please submit %d or more forms." +#~ msgid_plural "Please submit %d or more forms." +#~ msgstr[0] "Por favor, enviar %d o más formularios." +#~ msgstr[1] "Por favor, enviar %d o más formularios." + +# TODO cc @mouse is this a verb or noun +#, fuzzy +#~ msgid "Order" +#~ msgstr "Pedir" + +# if verb +# msgstr "Pedido" # if noun +#~ msgid "Please correct the duplicate data for %(field)s." +#~ msgstr "Por favor corrige los datos duplicados en %(field)s." + +#~ msgid "Please correct the duplicate data for %(field)s, which must be unique." +#~ msgstr "Por favor corrige los datos duplicados en %(field)s, los cuales deben ser unicos." + +#~ msgid "Please correct the duplicate data for %(field_name)s which must be unique for the %(lookup)s in %(date_field)s." +#~ msgstr "Por favor corrige los datos duplicados en %(field_name)s los cuales deben ser unicos por el %(lookup)s en %(date_field)s." + +#~ msgid "Please correct the duplicate values below." +#~ msgstr "Por favor corrige los valores duplicados a continuación." + +#~ msgid "The inline value did not match the parent instance." +#~ msgstr "El valor en línea no empareja la instancia progenitor." + +#~ msgid "Select a valid choice. That choice is not one of the available choices." +#~ msgstr "Selecciona una opción válida. Esa opción no es una de las opciones disponibles." + +#~ msgid "“%(pk)s” is not a valid value." +#~ msgstr "“%(pk)s” no es un valor válido." + +#~ msgid "%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it may be ambiguous or it may not exist." +#~ msgstr "%(datetime)s no se pudo interpretar en la zona horaria %(current_timezone)s; puede ser ambiguo o puede que no exista." + +#~ msgid "Clear" +#~ msgstr "Borrar" + +#~ msgid "Currently" +#~ msgstr "Actualmente" + +#~ msgid "Change" +#~ msgstr "Cambiar" + +#~ msgid "Unknown" +#~ msgstr "Desconocido" + +#~ msgid "Yes" +#~ msgstr "Sí" + +#~ msgid "No" +#~ msgstr "No" + +#~ msgid "yes,no,maybe" +#~ msgstr "sí,no,quizás" + +#~ msgid "%(size)d byte" +#~ msgid_plural "%(size)d bytes" +#~ msgstr[0] "%(size)d byte" +#~ msgstr[1] "%(size)d bytes" + +#~ msgid "%s KB" +#~ msgstr "%s KB" + +#~ msgid "%s MB" +#~ msgstr "%s MB" + +#~ msgid "%s GB" +#~ msgstr "%s GB" + +#~ msgid "%s TB" +#~ msgstr "%s TB" + +#~ msgid "%s PB" +#~ msgstr "%s PB" + +#~ msgid "p.m." +#~ msgstr "p.m." + +#~ msgid "a.m." +#~ msgstr "a.m." + +#~ msgid "PM" +#~ msgstr "PM" + +#~ msgid "AM" +#~ msgstr "AM" + +#~ msgid "midnight" +#~ msgstr "medianoche" + +#~ msgid "noon" +#~ msgstr "mediodia" + +#~ msgid "Monday" +#~ msgstr "Lunes" + +#~ msgid "Tuesday" +#~ msgstr "Martes" + +#~ msgid "Wednesday" +#~ msgstr "Miercoles" + +#~ msgid "Thursday" +#~ msgstr "Jueves" + +#~ msgid "Friday" +#~ msgstr "Viernes" + +#~ msgid "Saturday" +#~ msgstr "Sábado" + +#~ msgid "Sunday" +#~ msgstr "Domino" + +#~ msgid "Mon" +#~ msgstr "Lun" + +#~ msgid "Tue" +#~ msgstr "Mar" + +#~ msgid "Wed" +#~ msgstr "Mie" + +#~ msgid "Thu" +#~ msgstr "Jue" + +#~ msgid "Fri" +#~ msgstr "Vie" + +#~ msgid "Sat" +#~ msgstr "Sáb" + +#~ msgid "Sun" +#~ msgstr "Dom" + +#~ msgid "January" +#~ msgstr "Enero" + +#~ msgid "February" +#~ msgstr "Febrero" + +#~ msgid "March" +#~ msgstr "Marzo" + +#~ msgid "April" +#~ msgstr "Abril" + +#~ msgid "May" +#~ msgstr "Mayo" + +#~ msgid "June" +#~ msgstr "Junio" + +#~ msgid "July" +#~ msgstr "Julio" + +#~ msgid "August" +#~ msgstr "Agosto" + +#~ msgid "September" +#~ msgstr "Septiembre" + +#~ msgid "October" +#~ msgstr "Octubre" + +#~ msgid "November" +#~ msgstr "Noviembre" + +#~ msgid "December" +#~ msgstr "Diciembre" + +#~ msgid "jan" +#~ msgstr "ene" + +#~ msgid "feb" +#~ msgstr "feb" + +#~ msgid "mar" +#~ msgstr "mar" + +#~ msgid "apr" +#~ msgstr "abr" + +#~ msgid "may" +#~ msgstr "may" + +#~ msgid "jun" +#~ msgstr "jun" + +#~ msgid "jul" +#~ msgstr "jul" + +#~ msgid "aug" +#~ msgstr "ago" + +#~ msgid "sep" +#~ msgstr "sep" + +#~ msgid "oct" +#~ msgstr "oct" + +#~ msgid "nov" +#~ msgstr "nov" + +#~ msgid "dec" +#~ msgstr "dic" + +#~ msgctxt "abbrev. month" +#~ msgid "Jan." +#~ msgstr "en." + +#~ msgctxt "abbrev. month" +#~ msgid "Feb." +#~ msgstr "feb." + +#~ msgctxt "abbrev. month" +#~ msgid "March" +#~ msgstr "mzo." + +#~ msgctxt "abbrev. month" +#~ msgid "April" +#~ msgstr "abr." + +#~ msgctxt "abbrev. month" +#~ msgid "May" +#~ msgstr "my." + +#~ msgctxt "abbrev. month" +#~ msgid "June" +#~ msgstr "jun." + +#~ msgctxt "abbrev. month" +#~ msgid "July" +#~ msgstr "jul." + +#~ msgctxt "abbrev. month" +#~ msgid "Aug." +#~ msgstr "agto." + +#~ msgctxt "abbrev. month" +#~ msgid "Sept." +#~ msgstr "set." + +#~ msgctxt "abbrev. month" +#~ msgid "Oct." +#~ msgstr "oct." + +#~ msgctxt "abbrev. month" +#~ msgid "Nov." +#~ msgstr "nov." + +#~ msgctxt "abbrev. month" +#~ msgid "Dec." +#~ msgstr "dic." + +#~ msgctxt "alt. month" +#~ msgid "January" +#~ msgstr "Enero" + +#~ msgctxt "alt. month" +#~ msgid "February" +#~ msgstr "Febrero" + +#~ msgctxt "alt. month" +#~ msgid "March" +#~ msgstr "Marzo" + +#~ msgctxt "alt. month" +#~ msgid "April" +#~ msgstr "Abril" + +#~ msgctxt "alt. month" +#~ msgid "May" +#~ msgstr "Mayo" + +#~ msgctxt "alt. month" +#~ msgid "June" +#~ msgstr "Junio" + +#~ msgctxt "alt. month" +#~ msgid "July" +#~ msgstr "Julio" + +#~ msgctxt "alt. month" +#~ msgid "August" +#~ msgstr "Agosto" + +#~ msgctxt "alt. month" +#~ msgid "September" +#~ msgstr "Septiembre" + +#~ msgctxt "alt. month" +#~ msgid "October" +#~ msgstr "Octubre" + +#~ msgctxt "alt. month" +#~ msgid "November" +#~ msgstr "Noviembre" + +#~ msgctxt "alt. month" +#~ msgid "December" +#~ msgstr "Diciembre" + +#~ msgid "This is not a valid IPv6 address." +#~ msgstr "Esta no es una dirección IPv6 válida." + +#~ msgctxt "String to return when truncating text" +#~ msgid "%(truncated_text)s…" +#~ msgstr "%(truncated_text)s…" + +#~ msgid "or" +#~ msgstr "o" + +#~ msgid ", " +#~ msgstr ", " + +#~ msgid "%d year" +#~ msgid_plural "%d years" +#~ msgstr[0] "%d año" +#~ msgstr[1] "%d años" + +#~ msgid "%d month" +#~ msgid_plural "%d months" +#~ msgstr[0] "%d mes" +#~ msgstr[1] "%d meses" + +#~ msgid "%d week" +#~ msgid_plural "%d weeks" +#~ msgstr[0] "%d semana" +#~ msgstr[1] "%d semanas" + +#~ msgid "%d day" +#~ msgid_plural "%d days" +#~ msgstr[0] "%d día" +#~ msgstr[1] "%d días" + +#~ msgid "%d hour" +#~ msgid_plural "%d hours" +#~ msgstr[0] "%d hora" +#~ msgstr[1] "%d horas" + +#~ msgid "%d minute" +#~ msgid_plural "%d minutes" +#~ msgstr[0] "%d minuto" +#~ msgstr[1] "%d minutos" + +#, fuzzy +#~| msgid "%d minute" +#~| msgid_plural "%d minutes" +#~ msgid "0 minutes" +#~ msgstr "%d minuto" + +#~ msgid "Forbidden" +#~ msgstr "Prohibido" + +#~ msgid "CSRF verification failed. Request aborted." +#~ msgstr "Se falló la verificación CSRF. Se abortó la solicitud." + +#~ msgid "You are seeing this message because this HTTPS site requires a “Referer header” to be sent by your Web browser, but none was sent. This header is required for security reasons, to ensure that your browser is not being hijacked by third parties." +#~ msgstr "Estás viendo este mensaje porque este sitio HTTPS requiere que tu navegador Web envie un “Referer header”, pero no se la envió. Esta cabecedera se requiere por razones de seguridad, para asegurar que tu navegador no sea secuestrado por terceros." + +#~ msgid "If you have configured your browser to disable “Referer” headers, please re-enable them, at least for this site, or for HTTPS connections, or for “same-origin” requests." +#~ msgstr "Si has configurado su navegador para deshabilitar las cabecederas “Referer”, vuelva a habilitarlos, al menos para este sitio, o para conexiones HTTPS, o para solicitudes del “same-origin”. " + +#~ msgid "If you are using the tag or including the “Referrer-Policy: no-referrer” header, please remove them. The CSRF protection requires the “Referer” header to do strict referer checking. If you’re concerned about privacy, use alternatives like for links to third-party sites." +#~ msgstr "Si estás usando la eqtigueta o estás incluyendo la cabecedera “Referrer-Policy: no-referrer”, quitalas por favor. La protección CSRF require la cabecedera “Referer” para hacer verficación “strict referer“. Si te preocupa la privacidad, utiliza alternativas como para sitios de terceros." + +#~ msgid "You are seeing this message because this site requires a CSRF cookie when submitting forms. This cookie is required for security reasons, to ensure that your browser is not being hijacked by third parties." +#~ msgstr "Estás viendo este mensaje porque este sitio requiere un cookie CSRF cuando se envie formularios. Este cookie se requiere por razones de seguridad, para asegurar que tu navegador no sea secuestrado por terceros." + +#~ msgid "If you have configured your browser to disable cookies, please re-enable them, at least for this site, or for “same-origin” requests." +#~ msgstr "Si has configurado su navegador para deshabilitar los cookies, vuelva a habilitarlos, al menos para este sitio, o para conexiones HTTPS, o para solicitudes del “same-origin”. " + +#~ msgid "More information is available with DEBUG=True." +#~ msgstr "Más información es disponible con DEBUG=True." + +#~ msgid "No year specified" +#~ msgstr "Ningun año fue especificado" + +#~ msgid "Date out of range" +#~ msgstr "Fecha fuera de rango" + +#~ msgid "No month specified" +#~ msgstr "Ningun mes fue especificado" + +#~ msgid "No day specified" +#~ msgstr "Ningun día fue especificado" + +#~ msgid "No week specified" +#~ msgstr "Ninguna semana fue especificado" + +#~ msgid "No %(verbose_name_plural)s available" +#~ msgstr "No %(verbose_name_plural)s disponible" + +#~ msgid "Future %(verbose_name_plural)s not available because %(class_name)s.allow_future is False." +#~ msgstr "%(verbose_name_plural)s del futuro no está disponible porque %(class_name)s.allow_future es False." + +#~ msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +#~ msgstr "Cadena de fecha invalida “%(datestr)s” dado el formato “%(format)s”" + +#~ msgid "No %(verbose_name)s found matching the query" +#~ msgstr "No se encontró ningún %(verbose_name)s correspondiente a la búsqueda" + +#~ msgid "Page is not “last”, nor can it be converted to an int." +#~ msgstr "Página no es “last”, ni puede ser convertido en un int." + +#~ msgid "Invalid page (%(page_number)s): %(message)s" +#~ msgstr "Página invalida (%(page_number)s): %(message)s" + +#~ msgid "Empty list and “%(class_name)s.allow_empty” is False." +#~ msgstr "Lista vacia y “%(class_name)s.allow_empty” es False." + +#~ msgid "Directory indexes are not allowed here." +#~ msgstr "Indices directorios no se permiten aquí." + +#~ msgid "“%(path)s” does not exist" +#~ msgstr "“%(path)s” no existe" + +#~ msgid "Index of %(directory)s" +#~ msgstr "Indice de %(directory)s" + +#~ msgid "Django: the Web framework for perfectionists with deadlines." +#~ msgstr "Django: el estructura Web para perfeccionistas con fechas límites." + +#~ msgid "View release notes for Django %(version)s" +#~ msgstr "Ver notas de lanzamiento por Django %(version)s" + +#~ msgid "The install worked successfully! Congratulations!" +#~ msgstr "¡La instalación fue exitoso! ¡Felicidades!" + +#~ msgid "You are seeing this page because DEBUG=True is in your settings file and you have not configured any URLs." +#~ msgstr "Estás viendo esta pagina porque DEBUG=True está en tu archivo de configuración y no has configurado ningún URL." + +#~ msgid "Django Documentation" +#~ msgstr "Documentación de Django" + +#~ msgid "Topics, references, & how-to’s" +#~ msgstr "Tópicos, referencias, & instrucciones paso-a-paso" + +#~ msgid "Tutorial: A Polling App" +#~ msgstr "Tutorial: Una aplicación polling" + +#~ msgid "Get started with Django" +#~ msgstr "Empezar con Django" + +#~ msgid "Django Community" +#~ msgstr "Comunidad Django" + +#~ msgid "Connect, get help, or contribute" +#~ msgstr "Conectarse, encontrar ayuda, o contribuir" + +#~ msgid "Attempting to connect to qpid with SASL mechanism %s" +#~ msgstr "Intentando conectar con qpid con mecanismo SASL %s" + +#~ msgid "Connected to qpid with SASL mechanism %s" +#~ msgstr "Conectado con qpid con mecanismo SASL %s" + +#~ msgid "Unable to connect to qpid with SASL mechanism %s" +#~ msgstr "No se pudo conectar con qpid con mecanismo SASL %s" + +#~ msgid "1 second ago" +#~ msgstr "Hace 1 segundo" + +#~ msgid "1 minute ago" +#~ msgstr "Hace 1 minuto" + +#~ msgid "1 hour ago" +#~ msgstr "Hace 1 hora" + +#~ msgid "%(time)s" +#~ msgstr "%(time)s" + +#~ msgid "yesterday" +#~ msgstr "ayer" + +# TODO cc @mouse this could be grammatically incorrect if the time said 1 o'clock +# a working clock is broken twice a day! +#~ msgid "yesterday at %(time)s" +#~ msgstr "ayer a las %(time)s" + +#~ msgid "%(weekday)s" +#~ msgstr "%(weekday)s" + +# TODO cc @mouse this could be grammatically incorrect if the time said 1 o'clock +# a working clock is broken twice a day! +#~ msgid "%(weekday)s at %(time)s" +#~ msgstr "%(weekday)s a las %(time)s" + +#~ msgid "%(month_name)s %(day)s" +#~ msgstr "%(day)s %(month_name)s" + +# TODO cc @mouse this could be grammatically incorrect if the time said 1 o'clock +# a working clock is broken twice a day! +#~ msgid "%(month_name)s %(day)s at %(time)s" +#~ msgstr "%(day)s %(month_name)s a las %(time)s" + +#~ msgid "%(month_name)s %(day)s, %(year)s" +#~ msgstr "%(day)s %(month_name)s, %(year)s" + +# TODO cc @mouse this could be grammatically incorrect if the time said 1 o'clock +# a working clock is broken twice a day! +#~ msgid "%(month_name)s %(day)s, %(year)s at %(time)s" +#~ msgstr "%(day)s %(month_name)s, %(year)s a las %(time)s" + +#~ msgid "%(weekday)s, %(month_name)s %(day)s" +#~ msgstr "%(weekday)s, %(day)s %(month_name)s" + +#~ msgid "%(commas)s and %(last)s" +#~ msgstr "%(commas)s y %(last)s" + +#~ msgctxt "law" +#~ msgid "right" +#~ msgstr "justo" + +#~ msgctxt "good" +#~ msgid "right" +#~ msgstr "correcto" + +#~ msgctxt "organization" +#~ msgid "club" +#~ msgstr "club" + +#~ msgctxt "stick" +#~ msgid "club" +#~ msgstr "garrote" + +#~ msgid "Didn't find what you were looking for?" +#~ msgstr "¿No encontraste lo que buscabas?" + +#~ msgid "Hide results from other catalogues" +#~ msgstr "Ocultar resultados de otros catálogos" + +#~ msgid "Matching Users" +#~ msgstr "Usuarios correspondientes" + +#~ msgid "Set a reading goal for %(year)s" +#~ msgstr "Establecer una meta de lectura para %(year)s" + +#~ msgid "by %(author)s" +#~ msgstr "por %(author)s" + +#~ msgid "replied to %(username)s's review" +#~ msgstr "respondió a la reseña de %(username)s " + +#~ msgid "replied to %(username)s's comment" +#~ msgstr "respondió al comentario de %(username)s " + +#~ msgid "Remove tag" +#~ msgstr "Eliminar etiqueta" + +#~ msgid "Add tag" +#~ msgstr "Agregar etiqueta" + +#~ msgid "Books tagged \"%(tag.name)s\"" +#~ msgstr "Libros etiquetados con \"%(tag.name)s\"" + +#~ msgid "Reactivate user" +#~ msgstr "Reactivar usuario" + +#~ msgid "Positive big integer" +#~ msgstr "Entero positivo grande" + +#~ msgid "A JSON object" +#~ msgstr "Un objeto JSON" + +#~ msgid "Value must be valid JSON." +#~ msgstr "Valor debe ser JSON válido." + +#~ msgid "Enter a valid JSON." +#~ msgstr "Ingrese una JSON válida." + +#, fuzzy +#~| msgid "Started" +#~ msgid "Getting Started" +#~ msgstr "Empezado" + +#, fuzzy +#~| msgid "No users found for \"%(query)s\"" +#~ msgid "No users were found for \"%(query)s\"" +#~ msgstr "No se encontró ningún usuario correspondiente a \"%(query)s\"" + +#~ msgid "Tags" +#~ msgstr "Etiquetas" + +#~ msgid "Your lists" +#~ msgstr "Tus listas" + +#~ msgid "See all %(size)s lists" +#~ msgstr "Ver las %(size)s listas" + +#~ msgid "Recent Lists" +#~ msgstr "Listas recientes" + +#~ msgid "Published" +#~ msgstr "Publicado" + +#~ msgid "External links" +#~ msgstr "Enlaces externos" + +#~ msgid "OpenLibrary" +#~ msgstr "OpenLibrary" + +#~ msgid "Change shelf" +#~ msgstr "Cambiar estante" + +#~ msgid "Unshelve" +#~ msgstr "Retirar del estante" + +#~ msgid "Your Shelves" +#~ msgstr "Tus estantes" + +#~ msgid "%(username)s: Shelves" +#~ msgstr "%(username)s: Estantes" + +#~ msgid "Shelves" +#~ msgstr "Estantes" + +#~ msgid "See all %(shelf_count)s shelves" +#~ msgstr "Ver los %(shelf_count)s estantes" + +#~ msgid "Send follow request" +#~ msgstr "Envia solicitud de seguidor" + +#~ msgid "Site Configuration" +#~ msgstr "Configuracion de sitio" + +#~ msgid "Follow request already sent." +#~ msgstr "Solicitud de seguidor ya se ha enviado." + +#~ msgid "Created and curated by" +#~ msgstr "Creado y comisariado por" + +#~ msgid "Created by" +#~ msgstr "Creado por" + +#~ msgid "Added by" +#~ msgstr "Agregado por" + +#~ msgid "Create New Shelf" +#~ msgstr "Crear nuevo estante" + +#~ msgid "Create new list" +#~ msgstr "Crear nueva lista" diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index 42c4a98a19..c4e85a6686 100644 Binary files a/locale/es_ES/LC_MESSAGES/django.mo and b/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/locale/es_ES/LC_MESSAGES/django.po b/locale/es_ES/LC_MESSAGES/django.po index e43195f311..61725040c6 100644 --- a/locale/es_ES/LC_MESSAGES/django.po +++ b/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-15 16:34\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-15 08:36\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Spanish\n" "Language: es\n" @@ -33,56 +33,55 @@ msgstr "Un mes" msgid "Does Not Expire" msgstr "No expira" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} usos" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Sin límite" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Contraseña incorrecta" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "La contraseña no coincide" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Contraseña incorrecta" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "La fecha de interrupción de lectura no puede ser anterior a la fecha de inicio." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "La fecha de interrupción de lectura no puede ser en el futuro." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "La fecha final de lectura no puede ser en el futuro." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Nombre de usuario o contraseña es incorrecta" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Este nombre de usuario ya está en uso." -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Ya existe un usuario con ese correo electrónico." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "No se puede registrar esta dirección de correo electrónico." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Código incorrecto" @@ -90,7 +89,7 @@ msgstr "Código incorrecto" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este dominio está bloqueado. Ponte en contacto con le admin si crees que se trata de un error." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Este enlace con ese tipo de archivo ya ha sido añadido a este libro. Si no aparece, es porque el dominio todavía está pendiente." @@ -102,8 +101,8 @@ msgstr "Orden de la lista" msgid "Book Title" msgstr "Título" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Valoración" @@ -145,8 +144,8 @@ msgstr "Cuidado" msgid "Automatically generated report" msgstr "Informe generado automáticamente" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Eliminación de moderador" msgid "Domain block" msgstr "Bloqueo de dominio" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audio libro" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "Libro electrónico" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Novela gráfica" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Tapa dura" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Tapa blanda" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s no se parece a un ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s no tiene una suma de verificación ISBN correcta, esperábamos %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentario" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Reseña" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Cita" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Seguir" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "Error desconocido al importar el libro" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "Error desconocido al importar el estado del libro" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federalizado" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s no es un remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s no es un usuario válido" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nombre de usuario" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Ya existe un usuario con ese nombre." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Ya existe un usuario con ese nombre." msgid "Public" msgstr "Público" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Público" msgid "Unlisted" msgstr "No listado" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "No listado" msgid "Followers" msgstr "Seguidores" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Seguidores" msgid "Private" msgstr "Privado" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Activo" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Completado" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Detenido" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importación detenida" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Error en cargar libro" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "No se pudo encontrar el libro" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Falló" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratis" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Disponible para compra" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponible como préstamo" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprobado" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Comentario" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Reporte resuelto" @@ -363,123 +429,159 @@ msgstr "Dominio aprobado" msgid "Deleted item" msgstr "Elemento eliminado" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Estado de %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Comentario de %(display_name)s sobre %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "Reseña de %(display_name)sde %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Reseñas" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Comentarios" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citas" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Todo lo demás" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Línea de tiempo principal" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Inicio" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Línea temporal de libros" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Libros" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Inglés)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Catalán)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Alemán)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskera" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (gallego)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Coreano)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (finés)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Francés)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Países bajos (holandés)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (noruego)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polaco)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (portugués brasileño)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugués europeo)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (rumano)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (ucraniano)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chino simplificado)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chino tradicional)" @@ -517,12 +619,8 @@ msgid "The file you are uploading is too large." msgstr "El archivo que estás subiendo es demasiado grande." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -" Puedes intentar con un archivo más pequeño, o pregúntale a tu administrador del servidor de BookWyrm para que suba el parámetro DATA_UPLOAD_MAX_MEMORY_SIZE.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -618,7 +716,7 @@ msgid "Statuses posted:" msgstr "Estados publicados:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versión del software:" @@ -728,7 +826,7 @@ msgstr "El libro más corto que ha leído este año…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -808,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Sitio Web" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Ver registro ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Ver en ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Cargar datos" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Ver en OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Ver en Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Ver en LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Ver en Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Libros de %(name)s" @@ -882,8 +984,8 @@ msgid "Name:" msgstr "Nombre:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separar varios valores con comas." @@ -895,50 +997,54 @@ msgstr "Biografía:" msgid "Wikipedia link:" msgstr "Enlace de Wikipedia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Sitio Web:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Fecha de nacimiento:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Fecha de muerte:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identificadores de autor/autora" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Clave OpenLibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Clave Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Clave Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -946,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -960,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Guardar" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -977,6 +1083,7 @@ msgstr "Guardar" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -994,100 +1101,104 @@ msgstr "La carga de datos se conectará a %(source_name)s y com #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Confirmar" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "No se ha podido conectar con la fuente remota." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Editar Libro" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Haz clic para añadir portada" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "No se pudo cargar la portada" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Haz clic para ampliar" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s reseña)" msgstr[1] "(%(review_count)s reseñas)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Agregar descripción" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descripción:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s edición" msgstr[1] "%(count)s ediciones" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Has guardado esta edición en:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Una edición diferente de este libro está en tu estantería %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Tu actividad de lectura" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Agregar fechas de lectura" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "No tienes ninguna actividad de lectura para este libro." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Tus reseñas" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Tus comentarios" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Tus citas" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Temas" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1095,18 +1206,18 @@ msgstr "Lugares" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Agregar a lista" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1129,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "¡ISBN copiado!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "ASIN Audible:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Agregar portada" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Subir portada:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Cargar portada desde URL:" @@ -1236,7 +1357,7 @@ msgid "This is a new work" msgstr "Esta es una obra nueva" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1289,125 +1410,129 @@ msgstr "Volver" msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Ordenar por título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Número de serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Temas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Añadir tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Quitar tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Añadir otro tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publicación" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editorial:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Fecha de primera publicación:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Fecha de publicación:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autores" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Quitar %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Página de autor por %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Agregar Autores:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Añadir autore" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "María López García" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Añadir otre autore" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Portada" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Propiedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detalles del formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identificadores de libro" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "ID OpenLibrary:" @@ -1435,7 +1560,7 @@ msgid "Any" msgstr "Cualquier" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Idioma:" @@ -1496,12 +1621,15 @@ msgid "Domain" msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1513,8 +1641,8 @@ msgstr "Estado" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1560,8 +1688,8 @@ msgstr "Saliendo de BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Este enlace te lleva a: %(link_url)s.
    ¿Es ahí adonde quieres ir?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continuar" @@ -1617,7 +1745,19 @@ msgstr "Libro sin clasificar" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "La carga de datos se conectará a %(source_name)s y comprobará si hay metadatos sobre este libro que no están presentes aquí. Los metadatos existentes no serán sobrescritos." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Editar reseña" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Editar cita" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Editar comentario" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Editar estado" @@ -1644,7 +1784,7 @@ msgstr "Código de confirmación:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Enviar" @@ -1726,12 +1866,12 @@ msgstr "Sugerido" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1852,8 +1992,8 @@ msgstr "Hola," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm alojado en %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1871,8 +2011,8 @@ msgstr "Únete ahora" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Más información sobre %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2048,19 +2188,19 @@ msgid "Add to your books" msgstr "Añadir a tus libros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Para leer" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Leyendo actualmente" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2069,7 +2209,7 @@ msgid "Read" msgstr "Leído" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Lectura interrumpida" @@ -2102,7 +2242,7 @@ msgstr "Puedes agregar libros cuando comiences a usar %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Buscar" @@ -2754,6 +2894,7 @@ msgstr "Puedes crear o unirte a un grupo con otros usuarios. Los grupos pueden c #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupos" @@ -2868,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Te quedan %(display_left)s." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "En promedio, las importaciones recientes han tomado %(hours)s horas." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "En promedio, las importaciones recientes han tomado %(minutes)s minutos." @@ -2898,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Puede descargar tus datos de Goodreads desde la página de Importación/Exportación de tu cuenta de Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Archivo de datos:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Incluir reseñas" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Configuración de privacidad para las reseñas importadas:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importar" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Has alcanzado el límite de importaciones." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Las importaciones se han deshabilitado temporalmente, gracias por tu paciencia." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importaciones recientes" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Fecha de Creación" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Última Actualización" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementos" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "No hay ninguna importación reciente" @@ -2984,20 +3139,24 @@ msgid "Imports" msgstr "Importaciones" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importación ha empezado:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "En progreso" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Refrescar" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Parar la importación" @@ -3014,6 +3173,7 @@ msgid "Review items" msgstr "Revisar elementos" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3021,6 +3181,7 @@ msgstr[0] "%(display_counter)s elemento no se pudo importar." msgstr[1] "%(display_counter)s elementos no se pudieron importar." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Ver y solucionar los elementos fallidos" @@ -3029,12 +3190,14 @@ msgid "Row" msgstr "Fila" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Título" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3043,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Clave de OpenLibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor/Autora" @@ -3052,13 +3215,9 @@ msgstr "Autor/Autora" msgid "Shelf" msgstr "Estantería" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Reseña" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Libro" @@ -3076,6 +3235,8 @@ msgid "View imported review" msgstr "Ver reseña importada" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importado" @@ -3111,114 +3272,119 @@ msgstr "Si deseas migrar otros elementos (comentarios, reseñas o citas), debes #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Actualmente puedes importar un usuario cada %(user_import_hours)s horas." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "La próxima vez podrás importar un archivo de usuario en %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Paso 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Seleccione un archivo de exportación generado a partir de otra cuenta de BookWyrm. El formato del archivo debe ser .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Paso 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Deseleccione cualquier casilla de verificación para los datos que no desea incluir en su importación." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Perfil de usuario" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Sobrescribir nombre, resumen y avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Ajustes de usuario" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Sobrescribir:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "Si se requiere la aprobación manual para que otros usuarios sigan su cuenta" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "Si los seguidores se muestran en su perfil" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "Si su objetivo de lectura se muestra en su perfil" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "Si ves o no a un usuario seguir sugerencias" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Si tu cuenta es sugerida a otros" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Su zona horaria" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "Su configuración de privacidad por defecto del post" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Quienes te siguen y a quienes sigues" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Bloqueos de usuario" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Objetivos de lectura" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Sobrescribe los objetivos de lectura de todos los años listados en el archivo de importación" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Estantes" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Historial de lectura" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Reseñas de libros" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Comentarios sobre libros" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Listas de libros" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Listas guardadas" @@ -3242,15 +3408,18 @@ msgid "Reject" msgstr "Rechazar" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Elementos fallidos" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Solución de problemas" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Reintentar una importación puede reparar elementos ausentes en casos como:" @@ -3259,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "El libro ha sido añadido al nodo a partir de esta importación" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Un error transitorio o un tiempo de espera rebasado causó que la fuente de datos externa no estuviera disponible." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm ha sido actualizado con posterioridad a esta importación con una corrección de errores" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Póngase en contacto con su administrador o cree una propuesta si está viendo elementos fallidos inesperados." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Importaciones de usuarios" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Suma" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Estados" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Crear una cuenta" @@ -3324,7 +3568,7 @@ msgid "Login" msgstr "Iniciar sesión" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Iniciar sesión" @@ -3340,22 +3584,22 @@ msgstr "¡Éxito! Dirección de correo electrónico confirmada." msgid "Username:" msgstr "Nombre de usuario:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Contraseña:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Más sobre este sitio" @@ -3383,7 +3627,7 @@ msgstr "Restablecer contraseña" msgid "Reactivate Account" msgstr "Reactivar Cuenta" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Reactivar cuenta" @@ -3393,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "Busqueda en %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Buscar un libro o un usuario o una lista" +msgid "Search for a book, author, user, or list" +msgstr "Buscar un libro, autor, usuario o lista" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3607,6 +3851,8 @@ msgid "List position" msgstr "Posición" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Establecido" @@ -3931,7 +4177,7 @@ msgstr "%(related_user)s y %(other_user_di #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Un nuevo dominio necesita revisión" msgstr[1] "%(display_count)s nuevos dominios requieren moderación" @@ -4102,21 +4348,21 @@ msgstr "Ya estás siguiendo a %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Ya has solicitado seguir a %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Sigue a %(username)s en el Fediverso" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Sigue a %(username)s desde otra cuenta del Fediverso, como BookWyrm, Mastodon o Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Nombre de usuario desde el que seguir:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "¡Seguir!" @@ -4157,103 +4403,35 @@ msgstr "Primero inicia sesión..." msgid "Follow %(username)s" msgstr "Seguir a %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "¡Ahora sigues a %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Autenticación de Dos Factores" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Mover cuenta" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Se actualizó exitosamente la configuración de 2FA" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Crear Alias" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Escribe o pega estos códigos en un lugar seguro." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Añadir otra cuenta como alias" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Debe utilizarlos en orden, y no se volverán a mostrar." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "Es necesario marcar otra cuenta como alias si quieres mover esa cuenta a esta." -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Autenticación de Dos Factores está activo en tu cuenta." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Desactivar 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Puedes generar códigos de respaldo en caso de que no tengas acceso a tu aplicación de autenticación. Si generas nuevos códigos, todos los códigos de respaldo generados anteriormente dejarán de funcionar." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Genera códigos de respaldo" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Escanea el código QR con tu aplicación de autenticación e introduce el código de tu aplicación a continuación para confirmar que esté correctamente configurada." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Usar clave de configuración" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nombre de la cuenta:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Código:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Introduce el código de tu aplicación:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Tú puedes hacer tu cuenta más segura a través de usar Autenticación de Dos Factores (2FA). Esto requiere que uses un código de un solo uso usando una aplicación de celular como Authy, Autenticador de Google o Microsoft Authenticator cada vez que inicies sesión." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Confirme su contraseña para empezar a configurar 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Configurar 2FA" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "Mover cuenta" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "Crear Alias" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "Añadir otra cuenta como alias" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "Es necesario marcar otra cuenta como alias si quieres mover esa cuenta a esta." - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." -msgstr "Esta es una acción reversible y no cambiará la funcionalidad de esta cuenta." +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "Esta es una acción reversible y no cambiará la funcionalidad de esta cuenta." #: bookwyrm/templates/preferences/alias_user.html:25 msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" @@ -4330,6 +4508,12 @@ msgstr "Eliminar cuenta permanentemente" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "La eliminación de tu cuenta no se puede deshacer. El nombre de usuario no estará disponible para registrarse en el futuro." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Desactivar 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Desactivar Autenticación de Dos Factores" @@ -4359,12 +4543,12 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Apariencia" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacidad" @@ -4373,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Mostrar el indicador del objetivo de lectura en el feed" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Mostrar valoraciones" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Mostrar usuarios sugeridos" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Mostrar esta cuenta en usuarios sugeridos" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Tu cuenta se aparecerá en el directorio, y puede ser recomendado a otros usuarios de BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Huso horario preferido:" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Aprobar seguidores manualmente" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Ocultar a quién sigo y quién me sigue en el perfil." -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Privacidad de publicación por defecto:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "¿Quieres privacidad en tus estanterías? Puedes configurar un nivel de visibilidad distinto para cada una de tus estanterías. Ve a Tus libros, elige una estantería en la barra de pestañas y haz clic en \"Editar estantería\"." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "Exportar cuenta de BookWyrm" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "Puedes crear un archivo de exportación aquí. Esto te permitirá migrar tus datos a otra cuenta de BookWyrm." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    Su archivo incluirá:

    • Perfil de usuario
    • Configuraciones de usuario
    • Metas de lectura
    • Estanterías
    • Historial de lectura
    • Reseñas de libros
    • Estados
    • Sus listas propias y guardadas
    • Usuarios a quien sigue y bloqueados

    Su archivo no incluirá:

    • Mensajes directos
    • Respuestas a sus estados
    • Grupos
    • Favoritos
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Tu archivo incluirá:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Más ajustes de usuario" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Tus propias listas y listas guardadas" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Qué usuarios sigues y bloqueas" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Tu archivo no incluirá:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Mensajes directos" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Respuestas a tus estados" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favoritos" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "En su nueva cuenta de BookWyrm puede elegir qué importar: no tendrá que importar todo lo que se exporta." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "Si deseas migrar otros elementos (comentarios, reseñas o citas), debes configurar esta cuenta con un alias desde la que está migrando o mover esa cuenta a esta antes de importar sus datos de usuario." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Las exportaciones de nuevos usuarios están actualmente deshabilitadas." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "Podrá crear un nuevo archivo de exportación en %(next_available)s" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Crear archivo de exportación de usuario" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Exportaciones recientes" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "Los archivos de exportación de usuarios mostrarán 'completado' una vez listo. Esto puede tardar un poco. Haga clic en el enlace para descargar su archivo." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Fecha" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Tamaño" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Descargar su exportación" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "El archivo ya no está disponible" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4479,6 +4727,10 @@ msgstr "Descargar archivo" msgid "Account" msgstr "Cuenta" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Mover cuenta" @@ -4516,6 +4768,124 @@ msgstr "Recuerda añadir a este usuario como un alias de la cuenta de destino an msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Introduzca el nombre de usuario de la cuenta que desea añadir como alias, por ejemplo: user@example.com :" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Autenticación de Dos Factores" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Se actualizó exitosamente la configuración de 2FA" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Escribe o pega estos códigos en un lugar seguro." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Debe utilizarlos en orden, y no se volverán a mostrar." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Autenticación de Dos Factores está activo en tu cuenta." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Puedes generar códigos de respaldo en caso de que no tengas acceso a tu aplicación de autenticación. Si generas nuevos códigos, todos los códigos de respaldo generados anteriormente dejarán de funcionar." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Genera códigos de respaldo" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Escanea el código QR con tu aplicación de autenticación e introduce el código de tu aplicación a continuación para confirmar que esté correctamente configurada." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Usar clave de configuración" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nombre de la cuenta:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Código:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Introduce el código de tu aplicación:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Tú puedes hacer tu cuenta más segura a través de usar Autenticación de Dos Factores (2FA). Esto requiere que uses un código de un solo uso usando una aplicación de celular como Authy, Autenticador de Google o Microsoft Authenticator cada vez que inicies sesión." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Confirme su contraseña para empezar a configurar 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Configurar 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4561,6 +4931,7 @@ msgstr "Lectura se empezó" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progreso" @@ -4691,8 +5062,8 @@ msgstr "Búsqueda" msgid "Search type" msgstr "Tipo de búsqueda" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4702,12 +5073,12 @@ msgstr "Tipo de búsqueda" msgid "Users" msgstr "Usuarios" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "No se encontró ningún resultado correspondiente a \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4729,7 +5100,7 @@ msgstr "Editar" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Anuncios" @@ -4747,13 +5118,13 @@ msgstr "Falso" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Fecha de inicio:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Fecha final:" @@ -4822,7 +5193,6 @@ msgstr "Color:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Reglas de automoderación" @@ -4835,35 +5205,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "No se marcarán les usuaries que ya hayan sido denunciades (sin importar si la denuncia se ha resuelto)." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Programar:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Última ejecución:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Ejecuciones totales:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Habilitada:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Eliminar programación" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Ejecutar" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "La última ejecución no se actualizará" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Programar escaneo" @@ -4908,6 +5286,7 @@ msgstr "Quitar regla" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Estado de Celery" @@ -4936,6 +5315,7 @@ msgid "Import triggered" msgstr "Importación activada" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Conectores" @@ -4979,8 +5359,9 @@ msgid "Active Tasks" msgstr "Tareas activas" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4993,6 +5374,8 @@ msgid "Run time" msgstr "Tiempo de ejecución" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioridad" @@ -5025,6 +5408,66 @@ msgstr "¡Limpiar las colas puede causar serios problemas incluyendo la pérdida msgid "Errors" msgstr "Errores" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Razón de desactivación:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Instancias federalizadas" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Actualizar" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5032,7 +5475,7 @@ msgid "Dashboard" msgstr "Tablero" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Número de usuarios" @@ -5041,40 +5484,36 @@ msgstr "Número de usuarios" msgid "Active this month" msgstr "Activos este mes" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Estados" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Obras" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Actividad de instancia" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervalo:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dias" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Semanas" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Actividad de inscripciones de usuarios" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Actividad de estado" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Obras creadas" @@ -5086,9 +5525,13 @@ msgstr "Inscripciones" msgid "Statuses posted" msgstr "Estados publicados" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Suma" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "¿Desea comprobar automáticamente si hay nuevas versiones de BookWyrm? (recomendado)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5170,7 +5613,7 @@ msgstr "No hay dominios de correo electrónico bloqueados actualmente" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Configuración del Correo Electrónico" @@ -5183,7 +5626,7 @@ msgid "Successfully sent test email." msgstr "Correo de prueba enviado con éxito." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Remitente de correo electrónico:" @@ -5231,15 +5674,6 @@ msgstr "Enviar correo de prueba" msgid "Add instance" msgstr "Agregar instancia" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Instancias federalizadas" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5315,12 +5749,6 @@ msgstr "Notas" msgid "No notes" msgstr "Sin notas" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Todos los usuarios en esta instancia serán desactivados." @@ -5373,6 +5801,49 @@ msgstr "Software" msgid "No instances found" msgstr "No se encontró ningun anuncio" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Completado" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5419,7 +5890,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Algunes usuaries podrían importar gran cantidad de libros, puedes limitarlo." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Establece el valor 0 para no imponer ningún límite." @@ -5439,62 +5910,81 @@ msgstr "días." msgid "Set limit" msgstr "Establecer límite" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Desactivar exportaciones de usuario" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "Limitar la frecuencia con la que los usuarios pueden importar y exportar" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "Algunos usuarios podrían intentar ejecutar las importaciones o exportaciones de usuarios muy frecuentemente, lo que desea limitar." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Restringir las importaciones y exportaciones de usuarios a una vez cada " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "horas" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "Cambiar límite" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Importaciones de libros" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Completado" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Usuario" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Fecha Actualizada" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Elementos pendientes" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Importaciones exitosas" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "No se han encontrado importaciones coincidentes." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Importaciones de usuarios" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5658,6 +6148,10 @@ msgstr "Moderación" msgid "Reports" msgstr "Informes" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5668,22 +6162,26 @@ msgstr "Dominios de enlaces" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Estado de Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Configurar instancia" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Configurar sitio" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5691,7 +6189,7 @@ msgstr "Configurar sitio" msgid "Registration" msgstr "Registración" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5897,6 +6395,61 @@ msgstr "Resuelto" msgid "No reports found." msgstr "No se encontró ningún informe." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Tareas programadas" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Tareas" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nombre" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Fecha cambiada" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Horario" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Habilitada" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6142,10 +6695,6 @@ msgstr "Seguidores aprobados a mano:" msgid "Discoverable:" msgstr "Reconocible:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Razón de desactivación:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detalles de instancia" @@ -6239,8 +6788,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Parece que tu dominio no está bien configurado. No includas protocolos o barras diagonales." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Estás ejecutando BookWyrm en modo producción sin https. Activa USE_HTTPS." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6250,39 +6799,39 @@ msgstr "Configuración" msgid "Instance domain:" msgstr "Domino de la instancia:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocolo:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Usar S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Idioma por defecto:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Permitir previsualizar imágenes:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Permitir miniaturas de imágenes:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "¿Lo tienes todo a punto?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Esta es tu última oportunidad para establecer tu dominio y protocolo." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Puedes cambiar la configuración de tu instancia en el archivo .env de tu servidor." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Ver instrucciones de instalación" @@ -6299,7 +6848,7 @@ msgid "Need help?" msgstr "¿Necesitas ayuda?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Crear estantería" @@ -6307,59 +6856,72 @@ msgstr "Crear estantería" msgid "Edit Shelf" msgstr "Editar Estantería" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Todos los libros" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importar libros" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s libro" msgstr[1] "%(formatted_count)s libros" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(mostrando %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Editar estantería" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Eliminar estantería" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Archivado" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Empezado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Terminado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Hasta" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Esta estantería está vacía." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Invitar" @@ -6461,10 +7023,6 @@ msgstr "¡Advertencia, ya vienen spoilers!" msgid "Comment:" msgstr "Comentario:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Actualizar" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Compartir" @@ -6490,7 +7048,7 @@ msgstr "En la página:" msgid "At percent:" msgstr "Al por ciento:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "a" @@ -6535,10 +7093,6 @@ msgstr "Aplicar filtros" msgid "Follow @%(username)s" msgstr "Seguir a @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Seguir" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Cancelar solicitud de seguimiento" @@ -6571,7 +7125,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Sin valoración" @@ -6583,7 +7137,7 @@ msgstr[0] "%(half_rating)s estrella" msgstr[1] "%(half_rating)s estrellas" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6812,6 +7366,10 @@ msgstr "Dejar de leer" msgid "Finish reading" msgstr "Terminar de leer" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Mostrar estado" @@ -7167,8 +7725,9 @@ msgid "View profile and more" msgstr "Ver perfil y más" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Archivo excede el tamaño máximo: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7187,25 +7746,9 @@ msgstr[1] "%(num)d libros - de %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Actualizaciones de status de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Reseñas de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citas de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Comentarios de {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/eu_ES/LC_MESSAGES/django.mo b/locale/eu_ES/LC_MESSAGES/django.mo index 1767d7202c..e5a404d3aa 100644 Binary files a/locale/eu_ES/LC_MESSAGES/django.mo and b/locale/eu_ES/LC_MESSAGES/django.mo differ diff --git a/locale/eu_ES/LC_MESSAGES/django.po b/locale/eu_ES/LC_MESSAGES/django.po index 1164c443af..95ea29db2f 100644 --- a/locale/eu_ES/LC_MESSAGES/django.po +++ b/locale/eu_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-02-11 15:47\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Basque\n" "Language: eu\n" @@ -33,56 +33,55 @@ msgstr "Hilabete bat" msgid "Does Not Expire" msgstr "Ez da iraungitzen" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} erabilera" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Mugagabea" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Pasahitz okerra" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Pasahitzak ez datoz bat" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Pasahitz okerra" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Irakurketaren amaiera-data ezin da izan hasiera-data baino lehenagokoa." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Irakurketaren geldiera-data ezin da izan hasiera-data baino lehenagokoa." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Irakurketaren geldiera-data ezin da etorkizunekoa izan." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Irakurketaren amaiera-data ezin da etorkizunekoa izan." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Erabiltzaile-izena edo pasahitza okerra da" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Bada dagoeneko erabiltzaile bat erabiltzaile-izen horrekin" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Mezu elektroniko hau duen erabiltzailea dagoeneko badago." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Kode okerra" @@ -90,7 +89,7 @@ msgstr "Kode okerra" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Domeinu hau blokeatuta dago. Mesedez, hau akatsa badela uste baduzu, jar zaitez harremanetan zure administratzailearekin." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Fitxategi-mota horrekiko esteka hori jadanik erantsia izan zaio liburu honi. Agertzen ez bada, domeinua oraindik zintzilik dagoelako da." @@ -102,8 +101,8 @@ msgstr "Zerrendaren ordena" msgid "Book Title" msgstr "Liburuaren izenburua" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Balorazioa" @@ -145,8 +144,8 @@ msgstr "Arriskua" msgid "Automatically generated report" msgstr "Automatikoki sortutako txostena" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Moderatzaile ezabatzea" msgid "Domain block" msgstr "Domeinu blokeoa" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audio-liburua" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" -msgstr "Eleberri grafikoa" +msgstr "Komikia" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Azal gogorra" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Azal biguna" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Iruzkina" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Kritika" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Jarraitu" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokeatu" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federatuta" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s ez da baliozko remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s ez da baliozko erabiltzaile-izena" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "erabiltzaile-izena" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Erabiltzaile-izen hori duen erabiltzailea dagoeneko existitzen da." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Erabiltzaile-izen hori duen erabiltzailea dagoeneko existitzen da." msgid "Public" msgstr "Publikoa" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Publikoa" msgid "Unlisted" msgstr "Zerrendatu gabea" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Zerrendatu gabea" msgid "Followers" msgstr "Jarraitzaileak" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Jarraitzaileak" msgid "Private" msgstr "Pribatua" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktiboa" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Osatuta" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Geldituta" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Inportazioa gelditu da" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Errorea liburua kargatzean" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Ezin izan da libururako parekorik aurkitu" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Huts egin du" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Dohainik" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Erosgarria" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Mailegatzeko eskuragarri" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Onartuta" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Iruzkina" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Ebatzitako txostena" @@ -363,123 +429,159 @@ msgstr "Domeinua onartu da" msgid "Deleted item" msgstr "Elementua ezabatu da" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "%(display_name)s erabiltzailearen egoera" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s erabiltzailearen %(book_title)s liburuaren iruzkina" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s erabiltzailearen %(book_title)s liburuko aipua" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s erabiltzailearen %(book_title)s liburuaren kritika" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s erabiltzaileak %(book_title)s liburua baloratu du: %(display_rating).1f izar" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Kritikak" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Iruzkinak" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Aipuak" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Gainerako guztia" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Hasierako denbora-lerroa" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Hasiera" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Liburuen denbora-lerroa" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Liburuak" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Ingelesa)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (katalana)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (alemana)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperantoa" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (espainiera)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galiziera)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiera)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (koreera)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (finlandiera)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (frantses)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lituano (lituaniera)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Herbehereak (nederlandera)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norvegiera)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (poloniera)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Brasilgo Portugesa)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europako Portugesa)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (errumaniera)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (suediera)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (ukrainera)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Txinera soildua)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Txinera tradizionala)" @@ -517,12 +619,8 @@ msgid "The file you are uploading is too large." msgstr "Igotzen ari zaren fitxategia handiegia da." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -" Fitxategi txikiago bat erabil dezakezu, bestela, eskatu BookWyrm zerbitzariko administratzaileari DATA_UPLOAD_MAX_MEMORY_SIZE ezarpenaren balioa handitzeko.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Fitxategi txikiago bat erabiltzen saia zaitezke, edo eskatu BookWyrm zerbitzariko administratzaileari DATA_UPLOAD_MAX_MEMORY_SIZE ezarpena handiagotzeko." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -555,7 +653,7 @@ msgstr "%(site_name)s BookWyrmen parte da, irakurleentzako komunitate i #: bookwyrm/templates/about/about.html:45 #, python-format msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." -msgstr "%(title)s da %(site_name)sko libururik gogokonea, bere batezbesteko balorazioa %(rating)s izanik, 5eko eskalan." +msgstr "%(title)s da %(site_name)s(e)ko libururik maitatuena, 5etik %(rating)s puntuko balorazioarekin batez beste." #: bookwyrm/templates/about/about.html:64 #, python-format @@ -618,7 +716,7 @@ msgid "Statuses posted:" msgstr "Bidalitako egoerak:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Softwarearen bertsioa:" @@ -645,7 +743,7 @@ msgstr "%(year)s liburutan" #: bookwyrm/templates/annual_summary/layout.html:43 #, python-format msgid "%(year)s in the books" -msgstr "%(year)s liburuetan" +msgstr "%(year)s liburutan" #: bookwyrm/templates/annual_summary/layout.html:47 #, python-format @@ -703,7 +801,7 @@ msgstr "Zoritxarrez %(display_name)s(e)k ez zuen libururik amaitu %(year)s urtea msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" msgstr[0] "%(year)s urtean, %(display_name)s(e)k liburu %(books_total)s
    irakurri zuen, %(pages_total)s orrialde guztira!" -msgstr[1] "%(year)s urtean, %(display_name)s(e)k %(books_total)s liburu
    irakurri zituen, eta %(pages_total)s orrialde guztira!" +msgstr[1] "%(year)s urtean, %(display_name)s(e)k %(books_total)s liburu
    irakurri zituen, %(pages_total)s orrialde guztira!" #: bookwyrm/templates/annual_summary/layout.html:124 msgid "That’s great!" @@ -718,8 +816,8 @@ msgstr "Liburu bakoitzeko %(pages)s orrialdeko batezbestekoa da." #, python-format msgid "(No page data was available for %(no_page_number)s book)" msgid_plural "(No page data was available for %(no_page_number)s books)" -msgstr[0] "(%(no_page_number)s libururen orrialde-kopuruari buruzko daturik ez da aurkitu)" -msgstr[1] "(Ez zegoen %(no_page_number)s liburuetarako orrialdeen daturik)" +msgstr[0] "(Liburu %(no_page_number)sen orrialde-kopuruari buruzko daturik ez da aurkitu)" +msgstr[1] "(%(no_page_number)s libururen orrialde-kopuruari buruzko daturik ez da aurkitu)" #: bookwyrm/templates/annual_summary/layout.html:150 msgid "Their shortest read this year…" @@ -728,7 +826,7 @@ msgstr "Aurtengo irakurketarik laburrena…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -761,7 +859,7 @@ msgstr "Hori da bidea!" msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" msgstr[0] "%(display_name)s(e)k %(ratings_total)s puntuazio utzi ditu,
    eta bere batezbesteko puntuazioa %(rating_average)s da" -msgstr[1] "%(display_name)s(e)k %(ratings_total)s puntuazio utzi ditu,
    bere batezbesteko puntuazioa %(rating_average)s da" +msgstr[1] "%(display_name)s(e)k %(ratings_total)s puntuazio utzi ditu,
    eta bere batezbesteko puntuazioa %(rating_average)s izan da" #: bookwyrm/templates/annual_summary/layout.html:240 msgid "Their best rated review" @@ -808,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Webgunea" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Ikusi ISNI erregistroa" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Ikus ISFDB webgunean" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Kargatu datuak" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "OpenLibraryn ikusi" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Inventairen ikusi" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "LibraryThing-en ikusi" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Goodreads-en ikusi" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "%(name)s(e)k idatzitako liburuak" @@ -882,8 +984,8 @@ msgid "Name:" msgstr "Izena:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Bereizi balio anitzak komaz." @@ -895,50 +997,54 @@ msgstr "Bio:" msgid "Wikipedia link:" msgstr "Wikipedia esteka:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Webgunea:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Jaiotze data:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Heriotza data:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Egile identifikatzaileak" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary-ren giltza:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire IDa:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything-ren giltza:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads-ren giltza:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -946,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -960,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Gorde" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -977,6 +1083,7 @@ msgstr "Gorde" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -994,100 +1101,104 @@ msgstr "Datuak kargatzean %(source_name)s(e)ra konektatu eta he #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Berretsi" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Ezin izan da urruneko edukira konektatu." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Editatu liburua" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Egin klik azala gehitzeko" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Ezin izan da azala kargatu" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Egin click handitzeko" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(berrikuspen %(review_count)s)" msgstr[1] "(%(review_count)s berrikuspen)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Gehitu deskribapena" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Deskribapena:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "Edizio %(count)s" msgstr[1] "%(count)s edizio" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Edizio hau gorde duzu:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Liburu honen edizio desberdinak %(shelf_name)s apalean dituzu." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Zure irakurketa jarduera" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Gehitu irakurketa datak" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Ez duzu liburu honetarako irakurketa jarduerarik." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Zure kritikak" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Zure iruzkinak" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Zure aipuak" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Gaiak" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lekuak" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1095,18 +1206,18 @@ msgstr "Lekuak" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Zerrendak" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Gehitu zerrendara" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1129,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN-a kopiatu!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC zenbakia:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads-en giltza:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Gehitu azala" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Kargatu azala:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Kargatu azala URLtik:" @@ -1236,7 +1357,7 @@ msgid "This is a new work" msgstr "Lan berria da hau" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1289,125 +1410,129 @@ msgstr "Itzuli" msgid "Title:" msgstr "Izenburua:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Izenburuaren arabera ordenatu:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Azpititulua:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Seriea:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Serie zenbakia:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Hizkuntzak:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Gaiak:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Gehitu gaia" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Ezabatu gaia" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Gehitu beste gai bat" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Argitalpena" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Argitaletxea:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Argitaratutako lehen data:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Argitaratze data:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Egilea(k)" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Kendu %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "%(name)s egilearen orria" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Gehitu egilea(k):" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Gehitu egilea" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Egilearen Izen-Abizenak" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Gehitu beste egile bat" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Azala" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Ezaugarri fisikoak" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formatua:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Formatuaren xehetasunak:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Orrialdeak:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Liburuen identifikatzaileak" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary-ren IDa:" @@ -1435,7 +1560,7 @@ msgid "Any" msgstr "Edozein" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Hizkuntza:" @@ -1496,12 +1621,15 @@ msgid "Domain" msgstr "Domeinua" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1513,8 +1641,8 @@ msgstr "Egoera" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1560,8 +1688,8 @@ msgstr "Utzi BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Esteka honek: %(link_url)s-ra eramaten zaitu.
    Hori al da jarraitu nahi duzun esteka?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Jarraitu" @@ -1617,7 +1745,19 @@ msgstr "Sailkatu gabeko liburua" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Datuak kargatzean %(source_name)s(e)ra konektatu eta hemen aurkitzen ez diren autore honi buruzko metadatuak arakatuko dira. Dauden datuak ez dira ordezkatuko." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Editatu kritika" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Editatu aipua" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Editatu iruzkina" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Editatu egoera" @@ -1644,7 +1784,7 @@ msgstr "Berrespen kodea:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Bidali" @@ -1726,12 +1866,12 @@ msgstr "Iradokizunak" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1852,8 +1992,8 @@ msgstr "Kaixo," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm %(site_name)s-en ostatatua" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm %(site_name)s(e)n ostatatua" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1871,8 +2011,8 @@ msgstr "Batu orain" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Informazio gehiago %(site_name)s buruz." +msgid "Learn more about %(site_name)s." +msgstr "Gehiago jakin %(site_name)s(r)i buruz." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2048,19 +2188,19 @@ msgid "Add to your books" msgstr "Gehitu zure liburuetara" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Irakurtzeko" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Orain irakurtzen" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2069,7 +2209,7 @@ msgid "Read" msgstr "Irakurrita" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Irakurtzeari utzita" @@ -2102,7 +2242,7 @@ msgstr "Liburuak gehitu ditzakezu %(site_name)s erabiltzen hasten zarenean." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Bilatu" @@ -2488,7 +2628,7 @@ msgstr "Ados" #: bookwyrm/templates/guided_tour/group.html:10 msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." -msgstr "Ongi etorri zure taldearen orrialdera! Hemen erabiltzaileak gehitu eta ezabatu ditzakezu, taldean osatutako zerrendako sortu eta baita taldearen xehetasunak moldatu ere." +msgstr "Ongi etorri zure taldearen orrira! Hemen erabiltzaileak gehitu eta ken ditzakezu, erabiltzaileek bildutako zerrendak sortu eta baita taldearen xehetasunak moldatu ere." #: bookwyrm/templates/guided_tour/group.html:11 msgid "Your group" @@ -2754,6 +2894,7 @@ msgstr "Talde berri bat sor dezakezu edo existitzen den batean sar zaitezke. Tal #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Taldeak" @@ -2868,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "%(display_left)s geratzen zaizkizu." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Batezbeste, azken aldiko inportazioek %(hours)s ordu hartu dituzte." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Batezbeste, azken aldiko inportazioek %(minutes)s minutu hartu dituzte." @@ -2898,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Zure Goodreadseko datuak deskargatu ditzakezu zure Goodreads kontuko Inportatu/esportatu orrialdean." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Datu fitxategia:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Gehitu kritikak" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Inportatutako berrikuspenen pribatutasun ezarpena:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Sortu apal berriak lehendik ez badaude" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Pribatutasun ezarpenak inportatutako kritika eta apalentzat:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Inportatu" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Inportatu ditzakezun liburuen mugara heldu zara." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Inportazioak aldi baterako ezgaituta daude; eskerrik asko zure pazientziagatik." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Azken inportazioak" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Sortze-data" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Azken eguneratzea" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementuak" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Ez dago azken inportaziorik" @@ -2984,20 +3139,24 @@ msgid "Imports" msgstr "Inportazioak" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Inportazioa hasi da:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Abian" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Freskatu" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Gelditu inportazioa" @@ -3014,6 +3173,7 @@ msgid "Review items" msgstr "Berrikusi artikuluak" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3021,6 +3181,7 @@ msgstr[0] "Elementu %(display_counter)s inportatzeak huts egin du." msgstr[1] "%(display_counter)s elementu inportatzeak huts egin du." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Huts egindako elementuen problemak ikusi eta konpondu" @@ -3029,12 +3190,14 @@ msgid "Row" msgstr "Errenkada" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Izenburua" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3043,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Openlibrary-ren giltza" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Egilea" @@ -3052,13 +3215,9 @@ msgstr "Egilea" msgid "Shelf" msgstr "Apala" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Kritika" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Liburua" @@ -3076,6 +3235,8 @@ msgid "View imported review" msgstr "Ikusi inportatutako kritika" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Inportatuta" @@ -3111,114 +3272,119 @@ msgstr "Edozein egoera migratu nahi baduzu (iruzkinak, kritikak edo aipuak) kont #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Une honetan erabiltzaile bat inportatzeko baimena duzu %(user_import_hours)s orduro." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "Berriz ere erabiltzaile fitxategi bat inportatu ahalko duzu %(next_available)s(e)tan" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "1. pausoa:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Hautatu beste BookWyrm kontu batetik sortutako esportazio fitxategia. Fitxategiak .tar.gz formatua eduki behar du." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "2. pausoa:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Hautatu gabe utzi inportatu nahi ez dituzun datuen kutxatxoak." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Erabiltzailearen profila" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Erakusteko izena, laburpena eta irudia gainidazten ditu" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Erabiltzailearen ezarpenak" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Gainidazten du:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "Zure kontua jarraitzeko beste erabiltzaileak eskuz baimentzea behar den ala ez" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "Jarraitzaileak/jarraitzen dituzunak zure profilean ikusgarri egongo diren ala ez" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "Zure irakurketa helburua zure profilean ikusgarri egongo den ala ez" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "Jarraitzeko erabiltzaile gomendioak ikusten dituzun ala ez" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Zure kontua besteei gomendatuko zaien ala ez" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Zure ordu-eremua" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "Zure bidalketen pribatutasun-ezarpen lehenetsia" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Jarraitzaileak eta jarraituak" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Erabiltzaile blokeoak" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Irakurketa-helburuak" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Irakurketa-helburuak gainidazten ditu inportazio-fitxategian zerrendatutako urte guztietarako" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Apalak" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Irakurketa-historia" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Liburuen kritikak" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Liburuei buruzko iruzkinak" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Liburu-zerrendak" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Gordetako zerrendak" @@ -3242,15 +3408,18 @@ msgid "Reject" msgstr "Ezetsi" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Huts egindako elementuak" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Arazoen konponketa" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Inportazio bat berregiten saiatzeak falta diren elementuak konpon ditzake kasu hauetan:" @@ -3259,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "Liburua gehitu da instantziara inportazio hau gertatu zenetik" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Errore iragankor edo denbora-muga batek kanpoko datu-iturria eskuragarri ez egotea eragin dute." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "Inportazio hau egin eta gero, BookWyrm eguneratua izan da erroreen zuzenketa batekin" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Jar zaitez harremanetan zure administratzailearekin edo arazo bat seinalatu porrot egin duten ustegabeko elementuak ikusten badituzu." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Erabiltzaile inportazioak" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Guztira" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Egoerak" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Sortu kontu bat" @@ -3324,7 +3568,7 @@ msgid "Login" msgstr "Hasi saioa" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Hasi saioa" @@ -3340,22 +3584,22 @@ msgstr "Ondo! Helbide elektronikoa baieztatu duzu." msgid "Username:" msgstr "Erabiltzaile-izena:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Pasahitza:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Zure pasahitza ahaztu duzu?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Gune honi buruz gehiago jakin" @@ -3383,7 +3627,7 @@ msgstr "Berrezarri pasahitza" msgid "Reactivate Account" msgstr "Berriz aktibatu kontua" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Berriz aktibatu kontua" @@ -3393,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s bilaketa" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Bilatu liburu, erabiltzaile edo zerrenda bat" +msgid "Search for a book, author, user, or list" +msgstr "Bilatu liburu, egile, erabiltzaile edo zerrenda bat" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3607,6 +3851,8 @@ msgid "List position" msgstr "Zerrenda posizioa" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Ezarri" @@ -3884,7 +4130,7 @@ msgstr "%(related_user)s eta %(related_user)s and %(other_user_display_count)s others followed you" -msgstr "%(related_user)s eta beste %(other_user_display_count)s(e)k jaraitu zaituzte" +msgstr "%(related_user)s eta beste %(other_user_display_count)s(e)k jarraitu zaituzte" #: bookwyrm/templates/notifications/items/follow_request.html:15 #, python-format @@ -3931,7 +4177,7 @@ msgstr "%(related_user)s eta beste %(other #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Esteken domeinu berri batek moderazioa behar du" msgstr[1] "%(display_count)s esteken domeinuek moderazioa behar dute" @@ -4102,21 +4348,21 @@ msgstr "%(account)s jarraitzen ari zara dagoeneko" msgid "You have already requested to follow %(account)s" msgstr "Dagoeneko egina duzu %(account)s jarraitzeko eskaera" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Jarraitu %(username)s fedibertsoan" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Jarrai ezazu %(username)s Bookwyrm, Mastodon ala Pleroma bezalako fedibertsoko beste kontu batetik." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Harpidetzeko kontua:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Jarraitu!" @@ -4157,103 +4403,35 @@ msgstr "Sar gaitezen lehenengo..." msgid "Follow %(username)s" msgstr "Jarraitu %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "%(display_name)s jarraitzen duzu orain!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Bi faktoreko egiaztatzea" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Behar bezala eguneratu dira 2FA ezarpenak" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Mugitu kontua" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Idatzi edo kopiatu eta pegatu kode hauek segurua den nonbaitean." +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Sortu ezizena" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Ordenean erabili behar dituzu, eta ez dira gehiago bistaratuko." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Gehitu beste kontu bat ezizen gisa" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Bi faktoreko egiaztatzea aktibo dago zure kontuan." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "Beste kontu bat ezizen gisa markatzea beharrezkoa da kontu hori honetara mugitu nahi baduzu." -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Desgaitu 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Babes-kodeak sor ditzakezu, autentifikazio-aplikaziora sartzen ez baduzu lortzen. Kode berriak sortzen badituzu, lehenago sortutako segurtasun-kodeek ez dute funtzionatuko." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Sortu babeskopia-kodeak" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Eskaneatu QR kodea zure egiaztatze-aplikazioarekin eta gero sartu zure aplikazioko kodea azpian, aplikazioa behar bezala ezarrita dagoela baieztatzeko." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Erabiltzailea ezartzeko klabea" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Kontuaren izena:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Kodea:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Sartu zure aplikazioko kodea:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Zure kontua babestu dezakezu bi faktoretako egiaztatzea (2FA) erabiliz. Honek zure mugikorreko Authy, Google Authenticator edo Microsoft Authenticator bezalako aplikazio baten bitartez lortuko duzun aldi bakarreko kode bat eskatuko du, pasahitzaz gain, sartu nahi duzun aldi bakoitzeko." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Baieztatu zure pasahitza 2FA ezartzen hasteko." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Ezarri 2FA" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "Mugitu kontua" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "Sortu ezizena" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "Gehitu beste kontu bat ezizen gisa" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "Beste kontu bat ezizen gisa markatzea beharrezkoa da kontu hori honetara mugitu nahi baduzu." - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." -msgstr "Ekintza atzeraezina da hau eta ez du aldatuko kontu honen funtzionaltasuna." +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "Ekintza atzeraezina da hau eta ez du aldatuko kontu honen funtzionaltasuna." #: bookwyrm/templates/preferences/alias_user.html:25 msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" @@ -4330,6 +4508,12 @@ msgstr "Behin-betirako ezabatu kontua" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Zure kontua ezabatzea ezin da desegin. Erabiltzaile-izena ez da erabilgarri egongo etorkizunean izena emateko." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Desgaitu 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Desgaitu bi faktoreko egiaztatzea" @@ -4359,12 +4543,12 @@ msgstr "Profila" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Bistaratzea" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Pribatutasuna" @@ -4373,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Erakutsi irakurketa-helburua zehazteko eremua jarioan" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Erakutsi balorazioak" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Erakutsi iradokitako erabiltzaileak" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Erakutsi kontu hau iradokitako erabiltzaileen artean" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Zure kontua direktorioan agertuko da, eta BookWyrmeko beste erabiltzaile batzuei gomendatu ahal izango zaie." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Hobetsitako ordu-eremua: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Azala:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Eskuz onartu jarraitzaileak" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Ezkutatu jarraitzaile eta jarraituak profilean" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Lehenetsitako pribatutasuna bidalketentzat:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Apalen pribatutasunaren bila zabiltza? Zure apal bakoitzarentzat berariazko ikusgarritasun maila ezarri dezakezu. Zoaz Zure liburuak atalera, hautatu apal bat fitxa-barran eta klikatu \"Editatu apala\"." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "Esportatu BookWyrm kontua" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "Esportazio-fitxategi bat sor dezakezu hemen. Honek zure datuak beste BookWyrm kontu batera migratzeko aukera emango dizu." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    Zure fitxategiak honakoak izango ditu:

    • Erabiltzaile profila
    • Erabiltzaile ezarpen gehienak
    • Irakurketa-helburuak
    • Apalal
    • Irakurketa-historia
    • Liburuen kritikak
    • Egoerak
    • Zure zerrendak eta gordetako zerrendak
    • Jarraitzen dituzun eta blokeatu dituzun erabiltzaileak

    Zure fitxategiak ez ditu izango:

    • Mezu zuzenak
    • Zure egoerei erantzunak
    • Taldeak
    • Gogokoenak
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Fitxategiak honakoa izango du:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Erabiltzaile gehienen ezarpenak" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Zeure zerrendak eta gordetako zerrendak" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Zein erabiltzaile jarraitzen duzun eta blokeatuta duzun" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Fitxategiak ez du honakoa izango:" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Mezu zuzenak" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Zure egoerek jasotako erantzunak" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Gogokoak" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "Zure BookWyrm kontu berrian hautatu ahal izango duzu zer inportatu: ez duzu esportatutako guztia inportatu beharko." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "Edozein egoera migratu nahi baduzu (iruzkinak, kritikak edo aipuak) mugitzen ari zaren helburuko kontua honako honen alias gisa ezarri behar duzu, ala kontu hau kontu berrira mugitu, zure erabiltzaile datuak inportatu aurretik." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Erabiltzaileen esportazioak desgaituta daude une honetan." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "Erabiltzaileen esportazioak administratzailearen paneleko Inportazioak orritik alda daitezke." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "Esportazio fitxategi berdi bat sortu ahalko duzu %(next_available)s(e)tan" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Sortu erabiltzaile esportazio fitxategia" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Azken esportazioak" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "Erabiltzaile-esportazio fitxategiek 'osatuta' adieraziko dute prest daudenean. Baliteke honek tartetxo bat hartzea. Klik egin estekan fitxategia deskargatzeko." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Data" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Tamaina" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Deskargatu zure esportazioa" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "Artxiboa ez dago erabilgarri" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4479,6 +4727,10 @@ msgstr "Deskargatu fitxategia" msgid "Account" msgstr "Kontua" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Mugitu kontua" @@ -4516,6 +4768,124 @@ msgstr "Gogoratu erabiltzaile hau helburuko kontuaren alias gisa gehitzea mugitu msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Sartu mugitu nahi duzun kontuaren erabiltzaile-izena, adib. erabiltzailea@adibidea.eus:" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Bi faktoreko egiaztatzea" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Behar bezala eguneratu dira 2FA ezarpenak" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Idatzi edo kopiatu eta pegatu kode hauek segurua den nonbaitean." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Ordenean erabili behar dituzu, eta ez dira gehiago bistaratuko." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Bi faktoreko egiaztatzea aktibo dago zure kontuan." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Babes-kodeak sor ditzakezu, autentifikazio-aplikaziora sartzen ez baduzu lortzen. Kode berriak sortzen badituzu, lehenago sortutako segurtasun-kodeek ez dute funtzionatuko." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Sortu babeskopia-kodeak" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Eskaneatu QR kodea zure egiaztatze-aplikazioarekin eta gero sartu zure aplikazioko kodea azpian, aplikazioa behar bezala ezarrita dagoela baieztatzeko." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Erabiltzailea ezartzeko klabea" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Kontuaren izena:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Kodea:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Sartu zure aplikazioko kodea:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Zure kontua babestu dezakezu bi faktoretako egiaztatzea (2FA) erabiliz. Honek zure mugikorreko Authy, Google Authenticator edo Microsoft Authenticator bezalako aplikazio baten bitartez lortuko duzun aldi bakarreko kode bat eskatuko du, pasahitzaz gain, sartu nahi duzun aldi bakoitzeko." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Baieztatu zure pasahitza 2FA ezartzen hasteko." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Ezarri 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4561,6 +4931,7 @@ msgstr "Irakurtzen hasita" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Egoera" @@ -4690,8 +5061,8 @@ msgstr "Bilaketa-kontsulta" msgid "Search type" msgstr "Bilaketa mota" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4701,12 +5072,12 @@ msgstr "Bilaketa mota" msgid "Users" msgstr "Erabiltzaileak" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Ez da emaitzarik aurkitu \"%(query)s\"-rako" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4728,7 +5099,7 @@ msgstr "Editatu" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Iragarpenak" @@ -4746,13 +5117,13 @@ msgstr "Gezurra" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Hasiera data:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Amaiera data:" @@ -4821,7 +5192,6 @@ msgstr "Kolorea:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Auto-moderaziorako arauak" @@ -4834,35 +5204,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Dagoeneko salatuta dauden erabiltzaile edo egoerak (salaketa argituta egon ala ez) ez dira markatuko." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Programazioa:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Azken aldiz exekutatua:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Betearazpenak, guztira:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Gaituta:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Ezabatu programazioa" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Exekutatu berehala" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Azkenekoz exekutatutako data ez da eguneratuko" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Progamatu eskaneatzea" @@ -4907,6 +5285,7 @@ msgstr "Ezabatu araua" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Celery-ren egoera" @@ -4935,6 +5314,7 @@ msgid "Import triggered" msgstr "Inportazioa abiarazi da" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Konektoreak" @@ -4978,8 +5358,9 @@ msgid "Active Tasks" msgstr "Zeregin aktiboak" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "IDa" @@ -4992,6 +5373,8 @@ msgid "Run time" msgstr "Exekuzio-denbora" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Lehentasuna" @@ -5024,6 +5407,66 @@ msgstr "Kontsultak garbitzean, arazo larriak ekar ditzake, hala nola, datuen gal msgid "Errors" msgstr "Erroreak" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Desaktibatzeko arrazoia:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Federatutako instantziak" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Eguneratu" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5031,7 +5474,7 @@ msgid "Dashboard" msgstr "Arbela" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Erabiltzaileak guztira" @@ -5040,40 +5483,36 @@ msgstr "Erabiltzaileak guztira" msgid "Active this month" msgstr "Aktibo hilabete honetan" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Egoerak" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Liburuak" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Instantziaren aktibitatea" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Tartea:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Egunak" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Asteak" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Erabiltzaileen izen-emate aktibitatea" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Egoeren aktibitatea" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Sortutako liburuak" @@ -5085,9 +5524,13 @@ msgstr "Izen-ematea" msgid "Statuses posted" msgstr "Bidalitako egoerak" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Guztira" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "BookWyrm-en kaleratze berriak automatikoki egiaztatzea nahi duzu? (gomendatua)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Antolatu egiaztapenak" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5169,7 +5612,7 @@ msgstr "Ez dago email domeinurik bloketatua une honetan" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Epostaren konfigurazioa" @@ -5182,7 +5625,7 @@ msgid "Successfully sent test email." msgstr "Proba mezua behar bezala igorria." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Emailen bidaltzailea:" @@ -5230,15 +5673,6 @@ msgstr "Proba mezua igorri" msgid "Add instance" msgstr "Gehitu instantzia" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Federatutako instantziak" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5314,12 +5748,6 @@ msgstr "Oharrak" msgid "No notes" msgstr "Ez dago oharrik" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blokeatu" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Instantzia honetako erabiltzaile guztiak desaktibatuko dira." @@ -5372,6 +5800,49 @@ msgstr "Softwarea" msgid "No instances found" msgstr "Ez da instantziarik aurkitu" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Osatuta" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5418,7 +5889,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Erabiltzaile batzuk liburu kopuru handi bat inportatzen saia daitezke, eta baliteke hau mugatu nahi izatea." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Ezarri 0 balioa inolako mugarik jarri nahi ez baduzu." @@ -5438,62 +5909,81 @@ msgstr "egunero." msgid "Set limit" msgstr "Ezarri muga" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Desgaitu erabiltzaileen esportazioak egitea" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Aukera hau esportazioen ondoriozko arazo larrien kasuan erabiltzeko da eta eginbidea eten behar duzu arazoak konpondu bitartean." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Esportazioak desgaituta dauden bitartean, erabiltzaileek ezin izango dute erabiltzaileen esportazioak egin, baina dauden esportazioek ez dute eraginik jasango." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Desgaitu erabiltzaileen esportazioak" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "Mugatu erabiltzaileek zein maiztasunekin inportatu eta esportatu dezaketen" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "Erabiltzaile batzuk erabiltzaile inportazioak edo esportazioak oso sarri egiten saia daitezke; agian mugaren bat ezarri nahi duzu." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Mugatu erabiltzaile inportazioak eta esportazioak: " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Mugatu erabiltzaileek zein maiztasunarekin inportatu eta esporta dezaketen" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "ordutik behin" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "Muga aldatu" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Erabiltzaileek ezin dute erabiltzaileen esportazioak egin une honetan. Ezarpen lehenetsia da." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Momentuan ez da posible erabitzaile-esportazioak egitea Azure biltegia erabiltzean." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Gaitu erabiltzaileen esportazioak" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Liburu inportazioak" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Osatuta" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Erabiltzailea" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Eguneraketa-data" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Zain dauden elementuak" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Elementu arrakastatsuak" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Ez da aurkitu bat datorren inportaziorik." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Erabiltzaile inportazioak" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5657,6 +6147,10 @@ msgstr "Moderazioa" msgid "Reports" msgstr "Salaketak" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5667,22 +6161,26 @@ msgstr "Esteka domeinuak" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celery-ren egoera" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Instantziaren ezarpenak" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Gunearen ezarpenak" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5690,7 +6188,7 @@ msgstr "Gunearen ezarpenak" msgid "Registration" msgstr "Izen-ematea" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5896,6 +6394,61 @@ msgstr "Ebatzita" msgid "No reports found." msgstr "Ez da salaketarik aurkitu." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Antolaturiko zereginak" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Zereginak" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Izena" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Celery zeregina" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Data aldatu da" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Azken exekuzioa:" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Antolaketa" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "Antolaketaren IDa" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Gaituta" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Ezeztatu antolaketa" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Antolatu gabeko zereginak" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Antolaketak" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Ez da aurkitu antolaketarik" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6141,10 +6694,6 @@ msgstr "Eskuz onartutako jarraitzaileak:" msgid "Discoverable:" msgstr "Aurkigarria:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Desaktibatzeko arrazoia:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Instantziaren xehetasunak" @@ -6238,8 +6787,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Zure domeinua gaizki ezarria dagoela dirudi. Ez luke protokoloa edo barra etzanik izan behar." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "https gabe exekutatzen ari zara BookWyrm produkzio moduan. USE_HTTPS gaituta egon beharko litzateke produkzio testuinguruetan." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6249,39 +6798,39 @@ msgstr "Ezarpenak" msgid "Instance domain:" msgstr "Instantziaren domeinua:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokoloa:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "S3 erabiltzen:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Lehenetsitako interfazearen hizkuntza:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Gaitu irudien aurrebista:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Gaitu irudien miniaturak:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Itxura ona al du guztiak?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Azken aukera duzu hau domeinua eta protokoloa ezartzeko." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Zure instantziaren ezarpenak zure zerbitzarian dagoen .env fitxategian alda ditzakezu." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Ikus instalatzeko jarraibideak" @@ -6298,7 +6847,7 @@ msgid "Need help?" msgstr "Laguntzarik behar?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Sortu apala" @@ -6306,59 +6855,72 @@ msgstr "Sortu apala" msgid "Edit Shelf" msgstr "Editatu apala" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Liburu guztiak" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Inportatu liburuak" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "liburu %(formatted_count)s" msgstr[1] "%(formatted_count)s liburu" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(%(start)s-%(end)s tartea bistaratzen)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Editatu apala" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Ezabatu apala" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Apalean jarrita" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Noiz hasia" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Amaituta" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Noiz arte" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "Ez dugu aurkitu %(shelves_filter_query)s kontsultarekin bat datorren libururik" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Apal hau hutsik dago." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Iragazi gako-hitzaren arabera" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Sartu testua hemen" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Gonbidatu" @@ -6460,10 +7022,6 @@ msgstr "Spoilerrak datoz!" msgid "Comment:" msgstr "Iruzkina:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Eguneratu" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Argitaratu" @@ -6489,7 +7047,7 @@ msgstr "Orrialdean:" msgid "At percent:" msgstr "Ehunekotan:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "hona:" @@ -6534,10 +7092,6 @@ msgstr "Ezarri iragazkiak" msgid "Follow @%(username)s" msgstr "Jarraitu @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Jarraitu" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Desegin jarraitzeko eskaera" @@ -6570,7 +7124,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "Bookwyrmen iturburu-kodea era librean eskuragarri dago. Ekarpenak egin edo arazoen berri emateko GitHub erabil dezakezu." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Baloraziorik ez" @@ -6582,7 +7136,7 @@ msgstr[0] "izar %(half_rating)s" msgstr[1] "%(half_rating)s izar" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6811,6 +7365,10 @@ msgstr "Utzi irakurtzeari" msgid "Finish reading" msgstr "Bukatu irakurtzen" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Erakutsi balorazioa" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Erakutsi egoera" @@ -6945,7 +7503,7 @@ msgstr "Atsegin egoera" #: bookwyrm/templates/snippets/status/status.html:10 msgid "boosted" -msgstr "bultzatuta" +msgstr "erabiltzaileak bultzatua:" #: bookwyrm/templates/snippets/status/status_options.html:7 #: bookwyrm/templates/snippets/user_options.html:7 @@ -7166,8 +7724,9 @@ msgid "View profile and more" msgstr "Ikusi profila eta gehiago" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Fitxategiak gehienezko tamaina gainditzen du: 10 Mb" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7186,25 +7745,9 @@ msgstr[1] "%(num)d liburu - %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "{obj.display_name} erabiltzailearen egoera-eguneratzeak" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "{obj.display_name}(r)en kritikak" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "{obj.display_name}(r)en aipuak" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "{obj.display_name}(r)en iruzkinak" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "erabiltzaile-kontu berri bat" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/fi_FI/LC_MESSAGES/django.mo b/locale/fi_FI/LC_MESSAGES/django.mo index 117e30e7ae..a4ca56531e 100644 Binary files a/locale/fi_FI/LC_MESSAGES/django.mo and b/locale/fi_FI/LC_MESSAGES/django.mo differ diff --git a/locale/fi_FI/LC_MESSAGES/django.po b/locale/fi_FI/LC_MESSAGES/django.po index 140f6f92ec..6909574817 100644 --- a/locale/fi_FI/LC_MESSAGES/django.po +++ b/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-02-14 22:33\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-10 07:31\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Finnish\n" "Language: fi\n" @@ -33,56 +33,55 @@ msgstr "kuukaudessa" msgid "Does Not Expire" msgstr "ei koskaan" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} käyttökertaa" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "rajattomasti" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Väärä salasana" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Salasanat eivät täsmää" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Virheellinen salasana" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Lopetuspäivä ei voi olla ennen aloituspäivää." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Keskeytyspäivä ei voi olla ennen aloituspäivää." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Keskeytyspäivä ei voi olla tulevaisuudessa." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Lukemisen lopetuspäivä ei voi olla tulevaisuudessa." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Käyttäjänimi tai salasana on virheellinen" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Käyttäjänimi on jo varattu" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Sähköpostiosoite on jo jonkun käyttäjän käytössä." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Tätä sähköpostiosoitetta ei voida rekisteröidä." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Virheellinen koodi" @@ -90,7 +89,7 @@ msgstr "Virheellinen koodi" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Verkkotunnus on estetty. Jos epäilet virhettä, ota yhteyttä ylläpitäjään." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Linkki ja tiedostotyyppi on jo lisätty kirjan tietoihin. Jos se ei näy, verkkotunnusta on vielä odotettava." @@ -102,8 +101,8 @@ msgstr "Lisäysjärjestys" msgid "Book Title" msgstr "Kirjan nimi" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Arvosana" @@ -145,8 +144,8 @@ msgstr "Vaara" msgid "Automatically generated report" msgstr "Automaattisesti luotu raportti" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Moderaattorin poistama" msgid "Domain block" msgstr "Verkkotunnuksen esto" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Äänikirja" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "E-kirja" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Sarjakuva" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Kovakantinen" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Pehmeäkantinen" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s ei näytä olevan ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s ei sisällä oikein olevaa ISBN-tarkistussummaa, odotimme %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Kommentti" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Arvio" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Lainaus" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Seuraa" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Estä" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federoitu" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s ei ole kelvollinen remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s ei ole kelvollinen käyttäjänimi" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "käyttäjänimi" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Käyttäjänimi on jo käytössä." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Käyttäjänimi on jo käytössä." msgid "Public" msgstr "Julkinen" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Julkinen" msgid "Unlisted" msgstr "Ei jakelua" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Ei jakelua" msgid "Followers" msgstr "Seuraajat" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Seuraajat" msgid "Private" msgstr "Yksityinen" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktiivinen" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Valmis" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Keskeytetty" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Tuonti keskeytetty" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Virhe kirjan lataamisessa" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Kirjaa ei löytynyt tietokannoista" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Ei onnistunut" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Ilmainen" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Ostettavissa" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Lainattavissa" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Hyväksytty" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Kommentti" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Raportti ratkaistu" @@ -363,123 +429,159 @@ msgstr "Verkkotunnus hyväksytty" msgid "Deleted item" msgstr "Kohde poistettu" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "Tuntematon" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Käyttäjän %(display_name)s tila" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Käyttäjan %(display_name)s kommentti kirjasta %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "Käyttäjän %(display_name)s lainaus kirjasta %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "Käyttäjan %(display_name)s arvostelu kirjasta %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s arvosteli %(book_title)s: %(display_rating).1f tähti" +msgstr[1] "%(display_name)s arvosteli %(book_title)s: %(display_rating).1f tähteä" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Arviot" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Kommentit" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Lainaukset" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Muut" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Oma aikajana" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Etusivu" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Kirjavirta" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Kirjat" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (englanti)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (katalaani)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (saksa)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (espanja)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (baski)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (galego)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (italia)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (korea)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "suomi" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (ranska)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (liettua)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (hollanti)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (norja)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (puola)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (brasilianportugali)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (portugali)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (romania)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (ruotsi)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (ukraina)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (yksinkertaistettu kiina)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (perinteinen kiina)" @@ -517,11 +619,8 @@ msgid "The file you are uploading is too large." msgstr "Lähettämäsi tiedosto on liian suuri." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -"Voit yrittää pienemmällä tiedostolla tai pyytää palvelimen ylläpitäjää kasvattamaan DATA_UPLOAD_MAX_MEMORY_SIZE-aetusta. " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -617,7 +716,7 @@ msgid "Statuses posted:" msgstr "Tilapäivityksiä:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Ohjelmistoversio:" @@ -727,7 +826,7 @@ msgstr "Vuoden lyhyin kirja…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -807,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Näytä Wikidatassa" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Verkkosivu" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Näytä ISNI-tietue" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Näytä ISFDB:ssä" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Lataa tiedot" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Näytä OpenLibraryssa" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Näytä Inventairessa" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Näytä LibraryThingissä" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Näytä Goodreadsissa" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Tekijän %(name)s kirjat" @@ -881,8 +984,8 @@ msgid "Name:" msgstr "Nimi:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Erota erilliset arvot pilkulla." @@ -894,50 +997,54 @@ msgstr "Tietoja:" msgid "Wikipedia link:" msgstr "Linkki Wikipediaan:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Verkkosivu:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Syntymäaika:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Kuolinaika:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Tekijän tunnisteet" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary-avain:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire-tunniste:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything-avain:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads-avain:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -945,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -959,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Tallenna" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -976,6 +1083,7 @@ msgstr "Tallenna" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -993,100 +1101,104 @@ msgstr "Tietoja ladattaessa muodostetaan yhteys lähteeseen %(source_nam #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Vahvista" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Lähteeseen ei saada yhteyttä." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Muokkaa kirjaa" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Lisää kansikuva" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Kansikuvan lataus epäonnistui" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Suurenna" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "Näytä Finnassa" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s arvio)" msgstr[1] "(%(review_count)s arviota)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Lisää kuvaus" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Kuvaus:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s laitos" msgstr[1] "%(count)s laitosta" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Olet sijoittanut laitoksen hyllyyn:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Hyllyssäsi %(shelf_name)s on jo toinen tämän kirjan laitos." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Oma lukutoiminta" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Lisää lukupäivämäärät" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Ei kirjaan liittyvää lukutoimintaa." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Omat arviot" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Omat kommentit" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Omat lainaukset" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Aiheet" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Paikat" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1094,18 +1206,18 @@ msgstr "Paikat" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listat" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Lisää listaan" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1128,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN kopioitu!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC-numero:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB-tunniste:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna-tunniste:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Lisää kansikuva" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Lataa kansikuva:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Ladattavan kansikuvan URL:" @@ -1235,7 +1357,7 @@ msgid "This is a new work" msgstr "Uusi teos" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1288,125 +1410,129 @@ msgstr "Takaisin" msgid "Title:" msgstr "Nimi:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Lajittelussa käytettävä nimi:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Alaotsikko:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Sarja:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Osan numero:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Kielet:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Aiheet:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Lisää aihe" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Poista aihe" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Lisää uusi aihe" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Julkaisu" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Kustantaja:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Julkaistu ensimmäisen kerran:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Julkaisuaika:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Tekijät" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Poista %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Tekijän %(name)s sivu" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Lisää tekijät:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Lisää tekijä" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Marras Meikäläinen" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Yksi tekijä lisää" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Kansikuva" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Painoksen ominaisuudet" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Julkaisumuoto:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Lisätietoa julkaisumuodosta:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Sivumäärä:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Kirjan tunnisteet" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary-tunniste:" @@ -1434,7 +1560,7 @@ msgid "Any" msgstr "Mikä tahansa" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Kieli:" @@ -1495,12 +1621,15 @@ msgid "Domain" msgstr "Verkkotunnus" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1512,8 +1641,8 @@ msgstr "Tila" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1559,8 +1688,8 @@ msgstr "Poistutaan BookWyrmistä" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Linkki vie osoitteeseen %(link_url)s.
    Haluatko jatkaa?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Jatka" @@ -1616,7 +1745,19 @@ msgstr "Lajittelematon kirja" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Tietoja ladattaessa muodostetaan yhteys lähteeseen %(source_name)s ja sieltä haetaan metatietoja, joita ei vielä ole täällä. Olemassa olevia metatietoja ei korvata uusilla." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Muokkaa arvostelua" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Muokkaa lainausta" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Muokkaa kommenttia" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Muokkaa tilapäivitystä" @@ -1643,7 +1784,7 @@ msgstr "Vahvistuskoodi:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Lähetä" @@ -1725,12 +1866,12 @@ msgstr "Ehdotetut ensin" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1851,8 +1992,8 @@ msgstr "Hei," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm osoitteessa %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1870,8 +2011,8 @@ msgstr "Liity nyt" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Lue lisää %(site_name)s-yhteisöstä." +msgid "Learn more about %(site_name)s." +msgstr "Lue lisää %(site_name)s-yhteisöstä." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2047,19 +2188,19 @@ msgid "Add to your books" msgstr "Lisää omiin kirjoihin" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Lukujono" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Luettavana" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2068,7 +2209,7 @@ msgid "Read" msgstr "Luettu" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Jäi kesken" @@ -2101,7 +2242,7 @@ msgstr "Voit lisätä kirjoja, kun olet liittynyt %(site_name)s-yhteisöön." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Haku" @@ -2753,6 +2894,7 @@ msgstr "Voit luoda ryhmän tai liittyä muiden käyttäjien ryhmiin. Ryhmissä v #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Ryhmät" @@ -2848,7 +2990,7 @@ msgstr "Tätä aihetunnistetta ei ole vielä käytetty!" #: bookwyrm/templates/import/import.html:6 #: bookwyrm/templates/preferences/layout.html:43 msgid "Import Book List" -msgstr "" +msgstr "Tuo kirjalista" #: bookwyrm/templates/import/import.html:12 msgid "Not a valid CSV file" @@ -2867,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Voit käyttää toimintoa vielä %(display_left)s kertaa." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Viime aikoina tuonteihin on kulunut keskimäärin %(hours)s tuntia." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Viime aikoina tuonteihin on kulunut keskimäärin %(minutes)s minuuttia." @@ -2897,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Goodreads-tiedot voi ladata Goodreads-käyttäjätilin Import/Export-sivun kautta." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Datatiedosto:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Myös arviot" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Tuotavien arvioiden yksityisyysvalinta:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Luo uusia hyllyjä, jos niitä ei ole" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Tuo" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Olet käyttänyt tuontitoimintoa sallitun määrän." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Tuonti on väliaikaisesti pois käytöstä; palaa asiaan myöhemmin." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Viimeksi tuotu" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Luontipäivä" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Päivitetty viimeksi" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Nimikkeitä" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Ei viimeaikaisia tuonteja" @@ -2983,20 +3139,24 @@ msgid "Imports" msgstr "Tuonnit" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Tuonti alkoi:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Käynnissä" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Päivitä" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Keskeytä tuonti" @@ -3013,6 +3173,7 @@ msgid "Review items" msgstr "Tarkista nimikkeitä" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3020,6 +3181,7 @@ msgstr[0] "%(display_counter)s kohteen tuonti epäonnistui." msgstr[1] "%(display_counter)s kohteen tuonti epäonnistui." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Tarkastele epäonnistuneita nimikkeitä ja epäonnistumisten syitä" @@ -3028,12 +3190,14 @@ msgid "Row" msgstr "Rivi" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Nimi" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3042,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Openlibrary-avain" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Tekijä" @@ -3051,13 +3215,9 @@ msgstr "Tekijä" msgid "Shelf" msgstr "Hylly" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Arvio" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Kirja" @@ -3075,6 +3235,8 @@ msgid "View imported review" msgstr "Näytä tuotu arvio" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Tuotu" @@ -3098,11 +3260,11 @@ msgstr "Päivitä tuonti" #: bookwyrm/templates/import/import_user.html:6 #: bookwyrm/templates/preferences/layout.html:51 msgid "Import BookWyrm Account" -msgstr "" +msgstr "Tuo BookWyrm-tili" #: bookwyrm/templates/import/import_user.html:13 msgid "Not a valid import file" -msgstr "" +msgstr "Epäkelpo tuontitiedosto" #: bookwyrm/templates/import/import_user.html:18 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." @@ -3110,116 +3272,121 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" -msgstr "" +msgstr "Vaihe 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" -msgstr "" +msgstr "Vaihe 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Käyttäjäprofiili" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" -msgstr "" +msgstr "Käyttäjäasetukset" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" -msgstr "" +msgstr "Aikavyöhykkeesi" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" -msgstr "" +msgstr "Lukutavoitteet" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" -msgstr "" +msgstr "Hyllyt" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" -msgstr "" +msgstr "Lukuhistoria" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" -msgstr "" +msgstr "Kirja-arvostelut" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" -msgstr "" +msgstr "Kirjalistat" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" -msgstr "" +msgstr "Tallennettut listat" #: bookwyrm/templates/import/manual_review.html:5 #: bookwyrm/templates/import/troubleshoot.html:4 @@ -3241,15 +3408,18 @@ msgid "Reject" msgstr "Hylkää" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Epäonnistuneita nimikkeitä" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Vianmääritys" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Tuonnin uudelleenyritys saattaa löytää puuttuvia nimikkeitä esimerkiksi seuraavissa tapauksissa:" @@ -3258,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "Kirja on tuonnin jälkeen lisätty palvelimen tietokantaan." #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Ulkoista tietolähdettä ei voitu käyttää tilapäisen virheen tai aikakatkaisun vuoksi." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm on tuonnin jälkeen päivitetty ja päivitys on korjannut tähän liittyvän ongelman." #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Jos nimikkeiden tuonti epäonnistuu odottamattomalla tavalla, ota yhteyttä ylläpitäjään tai tee vikailmoitus." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Yhteensä" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Tilapäivityksiä" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Avaa käyttäjätili" @@ -3323,7 +3568,7 @@ msgid "Login" msgstr "Kirjaudu sisään" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Kirjaudu sisään" @@ -3339,22 +3584,22 @@ msgstr "Sähköpostiosoite vahvistettu." msgid "Username:" msgstr "Käyttäjänimi:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Salasana:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Unohtuiko salasana?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Tietoja sivustosta" @@ -3382,7 +3627,7 @@ msgstr "Palauta salasana" msgid "Reactivate Account" msgstr "Aktivoi tili uudelleen" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Aktivoi tili uudelleen" @@ -3392,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s — haku" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Hae kirjaa, käyttäjää tai listaa" +msgid "Search for a book, author, user, or list" +msgstr "Hae kirjaa, tekijää, käyttäjää tai listaa" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3606,6 +3851,8 @@ msgid "List position" msgstr "Sijainti listassa" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Aseta" @@ -3930,7 +4177,7 @@ msgstr "%(related_user)s ja %(other_user_d #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Uusi linkin verkkotunnus tarkastettavaksi" msgstr[1] "%(display_count)s uutta linkin verkkotunnusta tarkastettavaksi" @@ -4101,21 +4348,21 @@ msgstr "Seuraat jo käyttäjää %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Olet jo pyytänyt saada seurata käyttäjää %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Seuraa käyttäjää %(username)s fediversumissa" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Seuraa käyttäjää %(username)s toisen fediversumissa (esim. BookWyrm-, Mastodon- tai Pleroma-palvelimella) sijaitsevan käyttäjätilin kautta." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Seurattavan käyttäjän käyttäjätunnus:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Seuraa" @@ -4156,103 +4403,35 @@ msgstr "Kirjaudutaan ensin sisään..." msgid "Follow %(username)s" msgstr "Seuraa käyttäjää %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Seuraat nyt käyttäjää %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Kaksivaiheinen tunnistautuminen" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Siirrä tili" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "2FA-asetukset muutettu" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Luo alias" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Kirjoita tai kopioi nämä koodit turvalliseen paikkaan." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Lisää toinen tili aliakseksi" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Koodeja käytetään tässä järjestyksessä, eikä niitä näytetä uudelleen." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Tililläsi on käytössä kaksivaiheinen tunnistautuminen." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Poista kaksivaiheinen tunnistautuminen käytöstä" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Voit luoda varakoodeja, joita voit käyttää, kun autentikointisovellus ei ole käytettävissä. Uusien koodien luonti mitätöi aiemmin luodut varakoodit." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Luo varmistuskoodit" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Vahvista autentikointisovellus skannaamalla QR-koodi sovelluksella ja syöttämällä alle sovelluksen antama koodi." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Käytä asetusavainta" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Tilin nimi:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Koodi:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Syötä sovelluksen antama koodi:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Voit lisätä tilisi turvallisuutta käyttämällä kaksivaiheista tunnistautumista (2FA). Se edellyttää jokaisen sisäänkirjautumisen yhteydessä kertakäyttöisen koodin syöttämistä. Vaatii puhelinsovelluksen, esim. Authy, Google Authenticator tai Microsoft Authenticator." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Aloita kaksivaiheisen tunnistautumisen käyttöönotto syöttämällä salasanasi." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Ota kaksivaiheinen tunnistautuminen käyttöön" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." -msgstr "" +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "Tämä on peruutettava toiminto eikä muuta tämän tilin toiminnallisuutta." #: bookwyrm/templates/preferences/alias_user.html:25 msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" @@ -4270,7 +4449,7 @@ msgstr "Muut nimet" #: bookwyrm/templates/preferences/alias_user.html:49 msgid "Remove alias" -msgstr "" +msgstr "Poista alias" #: bookwyrm/templates/preferences/blocks.html:4 #: bookwyrm/templates/preferences/blocks.html:7 @@ -4329,6 +4508,12 @@ msgstr "Poista käyttäjätili pysyvästi" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Käyttäjätilin poistamista ei voi perua. Käyttäjänimeä ei voi myöhemmin rekisteröidä uudelleen." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Poista kaksivaiheinen tunnistautuminen käytöstä" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Poista kaksivaiheinen tunnistautuminen käytöstä" @@ -4358,12 +4543,12 @@ msgstr "Profiili" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Näyttövalinnat" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Yksityisyysvalinnat" @@ -4372,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Näytä lukutavoitekehote syötteen joukossa" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Näytä arviot" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Näytä ehdotettuja käyttäjiä" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Näytä oma käyttäjätilisi ehdotettujen käyttäjien joukossa" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Käyttäjätilisi näkyy hakemistossa, ja sitä saatetaan ehdottaa seurattavaksi muille BookWyrm-käyttäjille." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Ensisijainen aikavyöhyke: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Teema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Hyväksy seuraajat käsin" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Älä näytä seuraajia ja seurattavia profiilisivulla" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Julkaisujen julkisuuden oletusvalinta:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Haluatko pitää hyllysi yksityisenä? Voit asettaa kunkin hyllyn näkyvyyden erikseen. Siirry Omiin kirjoihin, valitse välilehdeltä haluamasi hylly ja napsauta ”Muokkaa hyllyä”." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" -msgstr "" +msgstr "Vie BookWyrm -tili" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "Voit luoda vientitiedoston täällä. Tämän avulla voit siirtää tietosi toiseen BookWyrm-tiliin." + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Tiedostosi sisältää:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Tiedostosi ei sisällä:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Yksityisviestit" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Suosikit" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" -msgstr "" +msgstr "Pvm" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" -msgstr "" +msgstr "Koko" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4478,6 +4727,10 @@ msgstr "Lataa tiedosto" msgid "Account" msgstr "Käyttäjätili" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4513,6 +4766,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Kaksivaiheinen tunnistautuminen" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "2FA-asetukset muutettu" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Kirjoita tai kopioi nämä koodit turvalliseen paikkaan." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Koodeja käytetään tässä järjestyksessä, eikä niitä näytetä uudelleen." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Tililläsi on käytössä kaksivaiheinen tunnistautuminen." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Voit luoda varakoodeja, joita voit käyttää, kun autentikointisovellus ei ole käytettävissä. Uusien koodien luonti mitätöi aiemmin luodut varakoodit." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Luo varmistuskoodit" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Vahvista autentikointisovellus skannaamalla QR-koodi sovelluksella ja syöttämällä alle sovelluksen antama koodi." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Käytä asetusavainta" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Tilin nimi:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Koodi:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Syötä sovelluksen antama koodi:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Voit lisätä tilisi turvallisuutta käyttämällä kaksivaiheista tunnistautumista (2FA). Se edellyttää jokaisen sisäänkirjautumisen yhteydessä kertakäyttöisen koodin syöttämistä. Vaatii puhelinsovelluksen, esim. Authy, Google Authenticator tai Microsoft Authenticator." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Aloita kaksivaiheisen tunnistautumisen käyttöönotto syöttämällä salasanasi." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Ota kaksivaiheinen tunnistautuminen käyttöön" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "IP-osoite" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "IP" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "Käyttöjärjestelmä" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "Nettiselain" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "Selain" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "Sinä" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "Kirjaudu ulos" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4558,6 +4929,7 @@ msgstr "Alkoi lukea" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Eteneminen" @@ -4688,8 +5060,8 @@ msgstr "Hakulauseke" msgid "Search type" msgstr "Hakutyyppi" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4699,12 +5071,12 @@ msgstr "Hakutyyppi" msgid "Users" msgstr "Käyttäjät" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Ei tuloksia hakulausekkeella ”%(query)s”" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4726,7 +5098,7 @@ msgstr "Muokkaa" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Tiedotteet" @@ -4744,13 +5116,13 @@ msgstr "Epätosi" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Alkaen:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Päättyen:" @@ -4819,7 +5191,6 @@ msgstr "Väri:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Automaattimoderointisäännöt" @@ -4832,35 +5203,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Jo raportoituja käyttäjiä tai tilapäivityksiä (riippumatta siitä, onko raporttia käsitelty) ei merkitä." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Ajastus:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Suoritettu viimeksi:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Suorituskertoja:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Käytössä:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Poista ajastus" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Suorita nyt" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Viimeisintä suoritusaikaa ei päivitetä" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Ajasta skannaus" @@ -4905,6 +5284,7 @@ msgstr "Poista sääntö" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Celeryn tila" @@ -4933,6 +5313,7 @@ msgid "Import triggered" msgstr "Tuonti käynnistetty" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Liitännät" @@ -4976,8 +5357,9 @@ msgid "Active Tasks" msgstr "Aktiiviset tehtävät" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "Tunniste" @@ -4990,6 +5372,8 @@ msgid "Run time" msgstr "Käyttöaika" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioriteetti" @@ -5022,6 +5406,66 @@ msgstr "Jonojen tyhjentämisestä voi aiheutua vakavia ongelmia, myös tietojen msgid "Errors" msgstr "Virheitä" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "Finna.fi on hakupalvelu, joka kokoaa satojen kotimaisten toimijoiden aineistot saman katon alle." + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Poistumisen syy:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Federoituvat palvelimet" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Päivitä" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5029,7 +5473,7 @@ msgid "Dashboard" msgstr "Kojelauta" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Käyttäjiä yhteensä" @@ -5038,40 +5482,36 @@ msgstr "Käyttäjiä yhteensä" msgid "Active this month" msgstr "Aktiivisena tässä kuussa" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Tilapäivityksiä" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Teoksia" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Palvelimen aktiivisuus" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Aikaväli:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "päivä" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "viikko" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Rekisteröityneitä käyttäjiä" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Tilapäivityksiä" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Luotuja teoksia" @@ -5083,9 +5523,13 @@ msgstr "Rekisteröitymisiä" msgid "Statuses posted" msgstr "Tilapäivityksiä" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Yhteensä" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5167,7 +5611,7 @@ msgstr "Ei estettyjä sähköpostiverkkotunnuksia" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Sähköpostin määritys" @@ -5180,7 +5624,7 @@ msgid "Successfully sent test email." msgstr "Testiviestin lähetys onnistui." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Sähköpostin lähettäjä:" @@ -5228,15 +5672,6 @@ msgstr "Lähetä testiviesti" msgid "Add instance" msgstr "Lisää palvelin" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Federoituvat palvelimet" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5312,12 +5747,6 @@ msgstr "Merkintöjä" msgid "No notes" msgstr "Ei merkintöjä" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Estä" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Kaikki palvelimen käyttäjät estetään." @@ -5370,6 +5799,49 @@ msgstr "Ohjelmisto" msgid "No instances found" msgstr "Palvelimia ei löytynyt" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Valmis" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5416,7 +5888,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Joskus käyttäjät voivat yrittää tuoda suuria määriä kirjoja, ja voit halutessasi rajoittaa tätä." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Poista kaikki rajoitukset asettamalla arvoksi 0." @@ -5436,62 +5908,81 @@ msgstr "päivä." msgid "Set limit" msgstr "Ota rajoitus käyttöön" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "Jotkut käyttäjät saattavat yrittää tehdä käyttäjätuonteja tai -vientejä hyvin usein, joita haluat rajoittaa." + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Rajoita kuinka usein käyttäjät voivat tuoda ja viedä käyttäjätietoja" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "tuntia" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 -msgid "hours" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 -msgid "Change limit" +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Valmis" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Käyttäjä" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Päivitetty" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Odottavia nimikkeitä" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Onnistuneita nimikkeitä" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Ei ehtoihin sopivia tuonteja." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5655,6 +6146,10 @@ msgstr "Moderointi" msgid "Reports" msgstr "Raportit" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5665,22 +6160,26 @@ msgstr "Linkkien verkkotunnukset" msgid "System" msgstr "Järjestelmä" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celeryn tila" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Palvelimen asetukset" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Sivuston asetukset" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5688,7 +6187,7 @@ msgstr "Sivuston asetukset" msgid "Registration" msgstr "Käyttäjätilien avaaminen" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5894,6 +6393,61 @@ msgstr "Ratkaistu" msgid "No reports found." msgstr "Ei raportteja." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Tehtävät" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nimi" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Käytössä" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6036,7 +6590,7 @@ msgstr "" #: bookwyrm/templates/settings/themes.html:143 msgid "Broken theme" -msgstr "" +msgstr "Rikkinäinen teema" #: bookwyrm/templates/settings/themes.html:152 msgid "Loaded successfully" @@ -6139,10 +6693,6 @@ msgstr "Käsin hyväksytyt seuraajat:" msgid "Discoverable:" msgstr "Löydettävissä:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Poistumisen syy:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Palvelimen tiedot" @@ -6236,8 +6786,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Verkkotunnus näyttää väärin muotoillulta. Siinä ei saa olla protokollaa tai vinoviivoja." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "BookWyrm on tuotantokäytössä ilman https-protokollaa. Tuotantokäytössä tulee ottaa käyttöön USE_HTTPS-valinta." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6247,39 +6797,39 @@ msgstr "Asetukset" msgid "Instance domain:" msgstr "Palvelimen verkkotunnus:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokolla:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "S3:n käyttö:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Käyttöliittymän oletuskieli:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Ota esikatselukuvat käyttöön:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Ota pikkukuvat käyttöön:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Ovatko tiedot oikein?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Nyt on viimeinen hetki määrittää verkkotunnus ja protokolla." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Palvelimen asetuksia voi muuttaa palvelimen .env-tiedostossa." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Näytä asennusohjeet" @@ -6296,7 +6846,7 @@ msgid "Need help?" msgstr "Tarvitsetko apua?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Luo hylly" @@ -6304,59 +6854,72 @@ msgstr "Luo hylly" msgid "Edit Shelf" msgstr "Muokkaa hyllyä" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Kaikki kirjat" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Tuo kirjoja" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s kirja" msgstr[1] "%(formatted_count)s kirjaa" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(näytetään %(start)s–%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Muokkaa hyllyä" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Poista hylly" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Hyllytetty" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Aloitettu" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Luettu" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Lopetettu" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Hylly on tyhjä." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Kirjoita tekstiä tähän" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Kutsu" @@ -6458,10 +7021,6 @@ msgstr "Juonipaljastuksia!" msgid "Comment:" msgstr "Kommentti:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Päivitä" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Julkaise" @@ -6487,7 +7046,7 @@ msgstr "Sivulla:" msgid "At percent:" msgstr "Prosenttikohdassa:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "–" @@ -6532,10 +7091,6 @@ msgstr "Käytä suodattimia" msgid "Follow @%(username)s" msgstr "Seuraa käyttäjää @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Seuraa" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Peruuta seuraamispyyntö" @@ -6568,7 +7123,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "BookWyrmin lähdekoodi on avointa. Kehitystyöhön voi osallistua ja ongelmista voi ilmoittaa GitHubissa." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Ei arvosanaa" @@ -6580,7 +7135,7 @@ msgstr[0] "%(half_rating)s tähti" msgstr[1] "%(half_rating)s tähteä" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6591,8 +7146,8 @@ msgstr[1] "%(rating)s tähteä" #, python-format msgid "set a goal to read %(counter)s book in %(year)s" msgid_plural "set a goal to read %(counter)s books in %(year)s" -msgstr[0] "asetti tavoitteeksi lukea %(counter)s kirjan vuonna %(year)s" -msgstr[1] "asetti tavoitteeksi lukea %(counter)s kirjaa vuonna %(year)s" +msgstr[0] "ajatteli lukea vuoden %(year)s aikana %(counter)s kirjan" +msgstr[1] "ajatteli lukea vuoden %(year)s aikana %(counter)s kirjaa" #: bookwyrm/templates/snippets/generated_status/rating.html:3 #, python-format @@ -6666,7 +7221,7 @@ msgstr "" #: bookwyrm/templates/snippets/moved_user_notice.html:7 #, python-format msgid "%(user)s has moved to %(moved_to_name)s" -msgstr "" +msgstr "%(user)s on muuttanut osoitteeseen %(moved_to_name)s" #: bookwyrm/templates/snippets/page_text.html:8 #, python-format @@ -6809,6 +7364,10 @@ msgstr "Keskeytä lukeminen" msgid "Finish reading" msgstr "Luettu kokonaan" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Näytä arvio" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Näytä tilapäivitys" @@ -6972,7 +7531,7 @@ msgstr "Näytä vähemmän" #: bookwyrm/templates/snippets/user_active_tag.html:5 msgid "Moved" -msgstr "" +msgstr "Siirretty" #: bookwyrm/templates/snippets/user_active_tag.html:12 msgid "Deleted" @@ -7164,8 +7723,9 @@ msgid "View profile and more" msgstr "Näytä profiili ja muita tietoja" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Tiedosto on enimmäiskokoa 10 Mt suurempi" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7184,25 +7744,9 @@ msgstr[1] "%(num)d kirjaa — %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "{obj.display_name} — tilapäivitykset" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Kirja-arviot — {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Lainaukset — {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Kommentit — {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "uusi käyttäjätili" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/fo_FO/LC_MESSAGES/django.mo b/locale/fo_FO/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..840a95055a Binary files /dev/null and b/locale/fo_FO/LC_MESSAGES/django.mo differ diff --git a/locale/fo_FO/LC_MESSAGES/django.po b/locale/fo_FO/LC_MESSAGES/django.po new file mode 100644 index 0000000000..a7edbc9cd4 --- /dev/null +++ b/locale/fo_FO/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Faroese\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: fo\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo index 4cdcbf8ea2..a02bc02a45 100644 Binary files a/locale/fr_FR/LC_MESSAGES/django.mo and b/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po index c69847369d..475cef844d 100644 --- a/locale/fr_FR/LC_MESSAGES/django.po +++ b/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-02-19 03:19\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" "Last-Translator: Mouse Reeve \n" "Language-Team: French\n" "Language: fr\n" @@ -33,56 +33,55 @@ msgstr "Un mois" msgid "Does Not Expire" msgstr "Sans expiration" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} utilisations" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Sans limite" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Mot de passe incorrect" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Le mot de passe ne correspond pas" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Mot de passe incorrect" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 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." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "La date d’arrêt de lecture ne peut pas être antérieure à la date de début." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "La date d’arrêt de lecture ne peut pas être dans le futur." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "La date de fin de lecture ne peut pas être dans le futur." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Identifiant ou mot de passe incorrect" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Un compte du même nom existe déjà" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Cet email est déjà associé à un compte." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Cette adresse de courriel ne peut pas être enregistrée." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Code incorrect" @@ -90,7 +89,7 @@ msgstr "Code incorrect" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Ce domaine est bloqué. Contactez l’admin de votre instance si vous pensez que c’est une erreur." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Le lien avec ce type de fichier a déjà été ajouté pour ce livre. S’il n’est pas visible, le domaine est encore en attente." @@ -102,8 +101,8 @@ msgstr "Ordre de la liste" msgid "Book Title" msgstr "Titre du livre" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Note" @@ -145,8 +144,8 @@ msgstr "Danger" msgid "Automatically generated report" msgstr "Rapport généré automatiquement" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Suppression par un modérateur" msgid "Domain block" msgstr "Blocage de domaine" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Livre audio" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Roman graphique" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Livre relié" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Livre broché" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Commentaire" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Critique" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citation" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "S’abonner" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquer" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "non autorisé" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "erreur de connexion" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "relation invalide" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Fédéré" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s n’est pas une remote_id valide." msgid "%(value)s is not a valid username" msgstr "%(value)s n’est pas un nom de compte valide." -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nom du compte :" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Ce nom est déjà associé à un compte." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Ce nom est déjà associé à un compte." msgid "Public" msgstr "Public" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Public" msgid "Unlisted" msgstr "Non listé" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Non listé" msgid "Followers" msgstr "Abonné(e)s" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Abonné(e)s" msgid "Private" msgstr "Privé" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Actif" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Terminé" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Interrompu" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Import arrêté" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Erreur lors du chargement du livre" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Impossible de trouver une correspondance pour le livre" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Échec" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratuit" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Disponible à l’achat" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponible à l’emprunt" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Approuvé" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Commentaire" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Signalement résolu" @@ -363,123 +429,159 @@ msgstr "Domaine approuvé" msgid "Deleted item" msgstr "Item supprimé" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Statuts de %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Commentaire de %(display_name)s pour « %(book_title)s »" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "Citation de %(display_name)s pour « %(book_title)s »" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "Critique de %(display_name)s pour « %(book_title)s »" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s a noté « %(book_title)s » : %(display_rating).1f étoile" +msgstr[1] "%(display_name)s a noté « %(book_title)s » : %(display_rating).1f étoiles" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Critiques" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Commentaires" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citations" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Tout le reste" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Mon fil d’actualité" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Accueil" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Mon fil d’actualité littéraire" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Livres" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Catalan)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Espéranto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Basque)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galicien)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italien)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Coréen)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finnois)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituanien)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" -msgstr "Pays‑Bas (Néerlandais)" +msgstr "Nederlands (néerlandais)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norvégien)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polonais)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugais brésilien)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugais européen)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Roumain)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Suédois)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (Ukrainien)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简化字" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (chinois traditionnel)" @@ -498,7 +600,7 @@ msgstr "Vous ne disposez pas des droits d'accès pour accéder à cette page ou #: bookwyrm/templates/403.html:15 msgid "If you think you should have access, please speak to your BookWyrm server administrator." -msgstr "" +msgstr "Si vous pensez que vous devriez y avoir accès, veuillez vous adresser à l'administrateur de votre serveur BookWyrm." #: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 msgid "Not Found" @@ -514,13 +616,11 @@ msgstr "Fichier trop volumineux" #: bookwyrm/templates/413.html:9 msgid "The file you are uploading is too large." -msgstr "" +msgstr "Le fichier que vous téléchargez est trop volumineux." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "" +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Vous pouvez essayer d'utiliser un fichier plus petit, ou demander à l'administrateur de l'instance BookWyrm d'augmenter le paramètre DATA_UPLOAD_MAX_MEMORY_SIZE." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -616,7 +716,7 @@ msgid "Statuses posted:" msgstr "Statuts publiés :" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Version logicielle :" @@ -726,7 +826,7 @@ msgstr "Sa lecture la plus courte l’année…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -806,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Voir sur Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Site Internet" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Voir l’enregistrement ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Voir sur ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Charger les données" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Voir sur OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Voir sur Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Voir sur LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Voir sur Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Livres de %(name)s" @@ -880,8 +984,8 @@ msgid "Name:" msgstr "Nom :" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Séparez plusieurs valeurs par une virgule." @@ -893,50 +997,54 @@ msgstr "Bio :" msgid "Wikipedia link:" msgstr "Wikipedia :" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Site Internet :" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Date de naissance :" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Date de décès :" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identifiants de l’auteur ou autrice" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Clé Openlibrary :" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Identifiant Inventaire :" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Clé Librarything :" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Clé Goodreads :" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI :" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -944,7 +1052,7 @@ msgstr "ISNI :" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -958,14 +1066,14 @@ msgstr "ISNI :" msgid "Save" msgstr "Enregistrer" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -975,6 +1083,7 @@ msgstr "Enregistrer" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -992,100 +1101,104 @@ msgstr "Le chargement des données se connectera à %(source_name)sdifferent edition of this book is on your %(shelf_name)s shelf." msgstr "Une édition différente de ce livre existe sur votre étagère %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Votre activité de lecture" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Ajouter des dates de lecture" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Vous n’avez aucune activité de lecture pour ce livre" -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Vos critiques" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Vos commentaires" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Vos citations" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Sujets" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lieux" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1093,18 +1206,18 @@ msgstr "Lieux" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listes" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Ajouter à la liste" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1127,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN copié !" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Numéro OCLC :" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN :" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "ASIN Audible:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna ID:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Ajouter une couverture" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Charger une couverture :" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Charger la couverture depuis une URL :" @@ -1234,7 +1357,7 @@ msgid "This is a new work" msgstr "Il s’agit d’un nouvel ouvrage." #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1287,125 +1410,129 @@ msgstr "Retour" msgid "Title:" msgstr "Titre :" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Titre de tri :" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Sous‑titre :" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Série :" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Numéro dans la série :" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Langues :" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Sujets :" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Ajouter un sujet" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Retirer le sujet" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Ajouter un autre sujet" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publication" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Éditeur :" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Première date de parution :" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Date de parution :" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Auteurs ou autrices" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Retirer %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Page de %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Ajouter des auteurs ou autrices :" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Ajouter un auteur ou une autrice" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Camille Dupont" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Ajouter un autre auteur ou autrice" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Couverture" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Propriétés physiques" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format :" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Détails du format :" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Pages :" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identifiants du livre" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13 :" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10 :" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Identifiant Openlibrary :" @@ -1433,7 +1560,7 @@ msgid "Any" msgstr "Tou(te)s" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Langue :" @@ -1494,12 +1621,15 @@ msgid "Domain" msgstr "Domaine" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1511,8 +1641,8 @@ msgstr "Statut" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1558,8 +1688,8 @@ msgstr "Vous quittez BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Ce lien vous amène à %(link_url)s.
    Est‑ce là que vous souhaitez aller ?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continuer" @@ -1615,7 +1745,19 @@ msgstr "Livre hors classement" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Le chargement des données se connectera à %(source_name)s et vérifiera les métadonnées de ce livre qui ne sont pas présentes ici. Les métadonnées existantes ne seront pas écrasées." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Modifier l'avis" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Modifier la citation" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Modifier le commentaire" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Modifier le statut" @@ -1642,7 +1784,7 @@ msgstr "Code de confirmation :" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Valider" @@ -1724,12 +1866,12 @@ msgstr "Suggéré" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1850,8 +1992,8 @@ msgstr "Bien le bonjour," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm, hébergé par %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm hébergé sur %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1869,8 +2011,8 @@ msgstr "S’enregistrer maintenant" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "En savoir plus sur %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "En savoir plus à propos de %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2046,19 +2188,19 @@ msgid "Add to your books" msgstr "Ajouter à vos livres" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "À lire" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Lectures en cours" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2067,7 +2209,7 @@ msgid "Read" msgstr "Lu" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Lecture interrompue" @@ -2100,7 +2242,7 @@ msgstr "Vous pourrez ajouter des livres lorsque vous commencerez à utiliser %(s #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Chercher" @@ -2565,7 +2707,7 @@ msgstr "Lecteur de code-barres" #: bookwyrm/templates/guided_tour/home.html:102 msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" -msgstr "" +msgstr "Utilisez les liens Listes, Découvrir et Vos livres pour découvrir des suggestions de lecture et les derniers événements sur ce serveur, ou pour voir vos livres catalogués !" #: bookwyrm/templates/guided_tour/home.html:103 msgid "Navigation Bar" @@ -2597,7 +2739,7 @@ msgstr "Notifications" #: bookwyrm/templates/guided_tour/home.html:200 msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." -msgstr "" +msgstr "Vous pouvez accéder à votre profil, à votre répertoire d'utilisateurs, à vos messages directs et à vos paramètres en cliquant sur votre nom dans le menu ici." #: bookwyrm/templates/guided_tour/home.html:200 msgid "Try selecting Profile from the drop down menu to continue the tour." @@ -2752,6 +2894,7 @@ msgstr "Vous pouvez créer ou rejoindre un groupe avec d'autres utilisateurs. Le #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Groupes" @@ -2866,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Encore %(display_left)s." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "En moyenne, les dernières importations ont pris %(hours)s heures." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "En moyenne, les dernières importations ont pris %(minutes)s minutes." @@ -2896,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Vous pouvez télécharger vos données Goodreads depuis la page Import/Export de votre compte Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Fichier de données :" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Importer les critiques" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Confidentialité des critiques importées :" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Créer de nouvelles étagères si elles n'existent pas" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Confidentialité des critiques et étagères importées :" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importer" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Vous avez atteint la limite d’imports." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Les importations sont temporairement désactivées, merci pour votre patience." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importations récentes" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Date de Création" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Dernière Mise à jour" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Éléments" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Aucune importation récente" @@ -2982,20 +3139,24 @@ msgid "Imports" msgstr "Importations" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Début de l’importation :" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "En cours de traitement" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Actualiser" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Arrêter l'import" @@ -3012,6 +3173,7 @@ msgid "Review items" msgstr "Vérifier les éléments" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3019,6 +3181,7 @@ msgstr[0] "%(display_counter)s élément n'a pas pu être importé." msgstr[1] "%(display_counter)s éléments n'ont pas pu être importés." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Afficher et corriger les importations ayant échoué" @@ -3027,12 +3190,14 @@ msgid "Row" msgstr "Ligne" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titre" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3041,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Clé Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Auteur/autrice" @@ -3050,13 +3215,9 @@ msgstr "Auteur/autrice" msgid "Shelf" msgstr "Étagère" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Critique" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Livre" @@ -3074,6 +3235,8 @@ msgid "View imported review" msgstr "Afficher la critique importée" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importé" @@ -3097,126 +3260,131 @@ msgstr "Mettre à jour l'importation" #: bookwyrm/templates/import/import_user.html:6 #: bookwyrm/templates/preferences/layout.html:51 msgid "Import BookWyrm Account" -msgstr "" +msgstr "Importer un compte BookWyrm" #: bookwyrm/templates/import/import_user.html:13 msgid "Not a valid import file" -msgstr "" +msgstr "Le fichier d'importation n'est pas valide" #: bookwyrm/templates/import/import_user.html:18 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." -msgstr "" +msgstr "Si vous souhaitez migrer des statuts (commentaires, avis ou citations), vous devez soit définir ce compte comme alias de celui à partir duquel vous migrez, soit déplacer ce compte. à celui-ci, avant d'importer vos données utilisateur." #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "" +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "Actuellement, vous êtes autorisé à importer un utilisateur toutes les %(hours)s heures." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Vous pourrez ensuite importer un fichier d'utilisateur à %(next_time)s" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Étape 1 :" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." -msgstr "" +msgstr "Sélectionnez un fichier d'exportation généré à partir d'un autre compte BookWyrm. Le format de fichier doit être .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Étape 2 :" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." -msgstr "" +msgstr "Désélectionnez les cases à cocher des données que vous ne souhaitez pas inclure dans votre importation." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Profil utilisateur·rice" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" -msgstr "" +msgstr "Remplace le nom d'affichage, le résumé et l'avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Paramètres utilisateur" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" -msgstr "" +msgstr "Écrasement :" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" -msgstr "" +msgstr "Si une approbation manuelle est requise pour que d'autres utilisateurs puissent suivre votre compte" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" -msgstr "" +msgstr "Si les personnes qui vous suivent ou que vous suivez sont affichées sur votre profil" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" -msgstr "" +msgstr "Si votre objectif de lecture est affiché sur votre profil" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" -msgstr "" +msgstr "Si vous voyez les suggestions de suivi des utilisateurs" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" -msgstr "" +msgstr "Si votre compte est suggéré à d'autres personnes" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Votre fuseau horaire" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" -msgstr "" +msgstr "Paramètres par défaut de confidentialité des messages" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" -msgstr "" +msgstr "Comptes qui vous suivent et comptes suivis" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Bloc utilisateur" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" -msgstr "" +msgstr "Objectifs de lecture" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" -msgstr "" +msgstr "Remplace les objectifs de lecture pour toutes les années énumérées dans le fichier d'importation" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" -msgstr "" +msgstr "Étagères" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" -msgstr "" +msgstr "Historique des lectures" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" -msgstr "" +msgstr "Comptes rendus de lecture" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Commentaire sur les livres" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Listes des livres" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Listes enregistrées" @@ -3240,15 +3408,18 @@ msgid "Reject" msgstr "Rejeter" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Éléments dont l'importation a échoué" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Résolution des problèmes" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Une nouvelle tentative d'importation peut corriger les éléments manquants dans les cas suivants :" @@ -3257,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "Le livre a été ajouté à l'instance depuis cette importation" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Une erreur momentanée ou un timeout a rendu la source de données externe indisponible." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm a été mis à jour depuis cette importation avec une correction de bug" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Contactez votre administrateur·ice ou signalez un problème si vous voyez des éléments inattendus qui ont échoué." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Statut de l’importation" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Statut de l’importation" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Importation des utilisateurs" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Total" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statuts" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Abonnements & Blocages" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Livres importés" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Problèmes d'importation d'un utilisateur" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "Votre compte n'a pas été défini comme un alias du compte utilisateur d'origine" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "Ré-essayer une importation ne fonctionnera pas dans ces cas :" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "Un utilisateur, statut ou serveur BookWyrm a été supprimé après la création de votre fichier d'importation" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "Importation des statuts lorsque votre ancien compte a été supprimé" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "Actuellement, vous êtes autorisé à importer un utilisateur toutes les %(hours)s heures." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Vous pourrez réessayer cette importation à %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Type de relation" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Motif" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Créer un compte" @@ -3322,7 +3568,7 @@ msgid "Login" msgstr "Connexion" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Se connecter" @@ -3338,22 +3584,22 @@ msgstr "Bravo ! L’adresse email a été confirmée." msgid "Username:" msgstr "Nom du compte :" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Mot de passe :" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "En savoir plus sur ce site" @@ -3381,7 +3627,7 @@ msgstr "Changer de mot de passe" msgid "Reactivate Account" msgstr "Réactiver le Compte" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Réactiver le compte" @@ -3391,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "Recherche %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Rechercher un livre, un utilisateur ou une liste" +msgid "Search for a book, author, user, or list" +msgstr "Rechercher un livre, un auteur, un utilisateur ou une liste" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3605,6 +3851,8 @@ msgid "List position" msgstr "Position" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Appliquer" @@ -3929,7 +4177,7 @@ msgstr "%(related_user)s et %(other_user_d #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Un nouveau domaine lié est en attente de modération" msgstr[1] "%(display_count)s nouveaux domaines liés sont en attente de modération" @@ -4023,12 +4271,12 @@ msgstr "a changé la description du groupe %(group_na #: bookwyrm/templates/notifications/items/user_export.html:14 #, python-format msgid "Your user export is ready." -msgstr "" +msgstr "Votre exportation d'utilisateur est prête." #: bookwyrm/templates/notifications/items/user_import.html:14 #, python-format msgid "Your user import is complete." -msgstr "" +msgstr "Votre importation d'utilisateur est terminée." #: bookwyrm/templates/notifications/notifications_page.html:19 msgid "Delete notifications" @@ -4100,21 +4348,21 @@ msgstr "Vous suivez déjà %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Vous avez déjà demandé à suivre %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Suivez %(username)s sur le Fédiverse" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Suivez %(username)s depuis un autre compte du Fédiverse comme BookWyrm, Mastodon, ou Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Compte depuis lequel vous voulez vous abonner :" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "S’abonner !" @@ -4155,99 +4403,31 @@ msgstr "Connectez‑vous d’abord…" msgid "Follow %(username)s" msgstr "S’abonner à @%(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Vous suivez maintenant %(display_name)s !" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Authentification à deux facteurs" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Paramètres 2FA mis à jour avec succès" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Migrer le compte" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Recopiez ou collez ces codes dans un endroit sûr." +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Créer un alias de redirection" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Vous devez les utiliser dans l'ordre et ils ne seront plus affichés." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Déclarer un alias de redirection" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "L'authentification à deux facteurs est active sur votre compte." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Désactiver l’authentification à deux facteurs" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Vous pouvez générer des codes de secours à utiliser si vous n'avez pas accès à votre application d'authentification. Si vous générez de nouveaux codes, tous les codes de secours précédemment générés ne fonctionneront plus." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Générer des codes de secours" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Scannez le code QR avec votre app d'authentification, puis saisissez ci-dessous le code de votre app pour confirmer que celle-ci est bien configurée." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Utiliser une clé d'initialisation" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nom du compte :" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Code :" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Entrez le code de votre app :" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Vous pouvez sécuriser votre compte en utilisant l’authentification à deux facteurs (2FA). Un code à usage unique fourni par une application mobile telle que Authy, Google Authenticator ou Microsoft Authenticator vous sera demandé à chaque fois que vous vous connecterez." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Confirmez votre mot de passe pour commencer à configurer l’authentification à deux facteur." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Configurer l’authentification à deux facteurs" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "Migrer le compte" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "Créer un alias de redirection" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "Déclarer un alias de redirection" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "Déclarer un compte comme alias de redirection est obligatoire si vous souhaitez déplacer ce compte vers un nouveau." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "Déclarer un compte comme alias de redirection est obligatoire si vous souhaitez déplacer ce compte vers un nouveau." #: bookwyrm/templates/preferences/alias_user.html:19 msgid "This is a reversable action and will not change the functionality of this account." @@ -4328,6 +4508,12 @@ msgstr "Supprimer définitivement le compte" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "La suppression de votre compte ne peut pas être annulée. Le nom d'utilisateur ne sera plus disponible pour vous enregistrer dans le futur." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Désactiver l’authentification à deux facteurs" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Désactiver l’authentification à deux facteurs" @@ -4357,12 +4543,12 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Affichage" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Confidentialité" @@ -4371,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Afficher l'invite du défi lecture dans le fil d’actualités" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Afficher les notes" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Afficher les comptes suggérés" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Afficher ce compte dans ceux suggérés" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Votre compte sera listé dans le répertoire et pourra être recommandé à d’autres utilisateurs ou utilisatrices de BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Fuseau horaire préféré" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Thème :" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Autoriser les abonnements manuellement" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Cacher les comptes abonnés et suivis sur le profil" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Niveau de confidentialité des messages par défaut :" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Vous souhaitez protéger vos étagères ? Vous pouvez définir un niveau de visibilité différent pour chacune d’elles. Allez dans Vos Livres, choisissez une étagère parmi les onglets, puis cliquez sur « Modifier l’étagère »." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" -msgstr "" +msgstr "Exporter le compte BookWyrm" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." -msgstr "" +msgstr "Vous pouvez créer un fichier d'exportation ici. Cela vous permettra de migrer vos données vers un autre compte BookWyrm." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "" +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Votre fichier comprendra :" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "La plupart des paramètres de l'utilisateur" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Vos propres listes et vos listes sauvegardées" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Les utilisateurs que vous suivez et bloquez" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Votre fichier ne comprendra pas :" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Messages directs" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Réponses à vos statuts" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favoris" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." -msgstr "" +msgstr "Dans votre nouveau compte BookWyrm, vous pouvez choisir ce que vous voulez importer : vous ne devrez pas nécessairement importer tout ce qui est exporté." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." -msgstr "" +msgstr "Si vous souhaitez migrer des statuts (commentaires, avis ou citations), vous devez soit définir le compte vers lequel vous déplacez comme alias de celui-ci, soit déplacer ce compte. au nouveau compte, avant d'importer vos données utilisateur." + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Les exportations d'utilisateurs sont désactivées." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "Les paramètres d'exportation des utilisateurs peuvent être modifiés depuis la page Imports dans le tableau de bord de l'administration." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" -msgstr "" +msgstr "Vous pourrez créer un nouveau fichier d'exportation à %(next_available)s" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "En moyenne, les dernières exportations ont pris %(hours)s heures." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "En moyenne, les dernières exportations ont pris %(minutes)s minutes." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Créer un fichier d'exportation" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Fichiers récents" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." -msgstr "" +msgstr "Les fichiers d'exportation de l'utilisateur afficheront \"complet\" une fois qu'ils seront prêts. Cela peut prendre un certain temps. Cliquez sur le lien pour télécharger votre fichier." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Date" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Taille" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Télécharger vos résultats" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "La sauvegarde n'est plus disponible" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4467,7 +4717,7 @@ msgstr "Exporter la liste des livres" #: bookwyrm/templates/preferences/export.html:13 msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." -msgstr "" +msgstr "Votre fichier d'exportation CSV comprendra tous les livres sur vos étagères, les livres que vous avez examinés et les livres avec activité de lecture.
    Utilisez-le pour importer dans un service comme Goodreads." #: bookwyrm/templates/preferences/export.html:20 msgid "Download file" @@ -4477,6 +4727,10 @@ msgstr "Télécharger le fichier" msgid "Account" msgstr "Compte" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Migrer le compte" @@ -4513,6 +4767,124 @@ msgstr "Pensez à déclarer cet utilisateur comme alias du compte cible avant d' msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Entrez le nom d'utilisateur du compte que vous souhaitez faire migrer (ex. : user@example.com) :" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Authentification à deux facteurs" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Paramètres 2FA mis à jour avec succès" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Recopiez ou collez ces codes dans un endroit sûr." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Vous devez les utiliser dans l'ordre et ils ne seront plus affichés." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "L'authentification à deux facteurs est active sur votre compte." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Vous pouvez générer des codes de secours à utiliser si vous n'avez pas accès à votre application d'authentification. Si vous générez de nouveaux codes, tous les codes de secours précédemment générés ne fonctionneront plus." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Générer des codes de secours" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Scannez le code QR avec votre app d'authentification, puis saisissez ci-dessous le code de votre app pour confirmer que celle-ci est bien configurée." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Utiliser une clé d'initialisation" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nom du compte :" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Code :" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Entrez le code de votre app :" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Vous pouvez sécuriser votre compte en utilisant l’authentification à deux facteurs (2FA). Un code à usage unique fourni par une application mobile telle que Authy, Google Authenticator ou Microsoft Authenticator vous sera demandé à chaque fois que vous vous connecterez." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Confirmez votre mot de passe pour commencer à configurer l’authentification à deux facteur." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Configurer l’authentification à deux facteurs" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4558,6 +4930,7 @@ msgstr "Lecture commencée le" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progression" @@ -4688,8 +5061,8 @@ msgstr "Requête" msgid "Search type" msgstr "Type de recherche" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4699,12 +5072,12 @@ msgstr "Type de recherche" msgid "Users" msgstr "Comptes" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Aucun résultat pour « %(query)s »" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4726,7 +5099,7 @@ msgstr "Modifier" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Annonces" @@ -4744,13 +5117,13 @@ msgstr "Faux" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Date de début :" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Date de fin :" @@ -4819,7 +5192,6 @@ msgstr "Couleur :" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Règles de modération auto" @@ -4832,35 +5204,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Les comptes ou statuts qui ont déjà été signalés (que le rapport ait été résolu ou non) ne seront pas marqués." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Planification :" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Dernière exécution :" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Nombre total d’exécutions :" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Activé :" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Supprimer la planification" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Lancer maintenant" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "La date de dernière exécution ne sera pas mise à jour" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Planifier une analyse" @@ -4905,6 +5285,7 @@ msgstr "Supprimer la règle" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Statut de Celery" @@ -4933,6 +5314,7 @@ msgid "Import triggered" msgstr "Import déclenché" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Connecteurs" @@ -4976,8 +5358,9 @@ msgid "Active Tasks" msgstr "Tâches actives" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4990,6 +5373,8 @@ msgid "Run time" msgstr "Durée" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Priorité" @@ -5022,6 +5407,66 @@ msgstr "Vider les files d’attente peut causer de graves problèmes, dont des p msgid "Errors" msgstr "Erreurs" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Raison de la désactivation :" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Instances fédérées" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Mettre à jour" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5029,7 +5474,7 @@ msgid "Dashboard" msgstr "Tableau de bord" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Nombre total d'utilisateurs·rices" @@ -5038,40 +5483,36 @@ msgstr "Nombre total d'utilisateurs·rices" msgid "Active this month" msgstr "Actifs ce mois" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statuts" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Œuvres" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Activité de l'instance" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervalle :" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Jours" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Semaines" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Nouvelles inscriptions" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Nouveaux statuts" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Œuvres créées" @@ -5083,9 +5524,13 @@ msgstr "Inscriptions" msgid "Statuses posted" msgstr "Statuts publiés" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Voulez-vous vérifier automatiquement les nouvelles versions de BookWyrm? (recommandé)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Contrôles de la planification" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5167,7 +5612,7 @@ msgstr "Aucun domaine de messagerie n’est actuellement bloqué" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Configuration de la messagerie" @@ -5180,7 +5625,7 @@ msgid "Successfully sent test email." msgstr "E-mail de test envoyé avec succès." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Expéditeur de l'e-mail :" @@ -5228,15 +5673,6 @@ msgstr "Envoyer un e-mail de test" msgid "Add instance" msgstr "Ajouter une instance" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Instances fédérées" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5312,12 +5748,6 @@ msgstr "Remarques" msgid "No notes" msgstr "Aucune note" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquer" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Tous les comptes de cette instance seront désactivés." @@ -5370,6 +5800,49 @@ msgstr "Logiciel" msgid "No instances found" msgstr "Aucune instance trouvée" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Terminé" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5377,7 +5850,7 @@ msgstr "Arrêter l'import ?" #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 msgid "This action will stop the user import before it is complete and cannot be un-done" -msgstr "" +msgstr "Cette action arrêtera l'importation de l'utilisateur avant qu'elle ne soit terminée et ne pourra pas être annulée." #: bookwyrm/templates/settings/imports/imports.html:19 msgid "Disable starting new imports" @@ -5393,7 +5866,7 @@ msgstr "Tant que les importations seront désactivées, les utilisateur⋅ices n #: bookwyrm/templates/settings/imports/imports.html:32 msgid "This setting prevents both book imports and user imports." -msgstr "" +msgstr "Ce paramètre empêche à la fois les importations de livres et les importations d'utilisateurs." #: bookwyrm/templates/settings/imports/imports.html:37 msgid "Disable imports" @@ -5416,7 +5889,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Certains utilisateurs peuvent essayer d'importer un grand nombre de livres, ce que vous souhaitez limiter." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Mettez la valeur à 0 pour ne pas imposer de limiter." @@ -5436,62 +5909,81 @@ msgstr "jours." msgid "Set limit" msgstr "Définir la limite" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Désactiver les exports d'utilisateurs" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Cette fonction ne doit être utilisée que lorsque les choses ont très mal tourné avec les exportations et qu'il est nécessaire de mettre la fonction en pause pendant que l'on s'occupe des problèmes." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Tant que les importations seront désactivées, les utilisateurs ne pourront pas en commencer de nouvelles, mais celles existantes ne seront pas affectées." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Désactiver les exportations des utilisateurs" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" -msgstr "" +msgstr "Limiter la fréquence à laquelle les utilisateurs peuvent importer et exporter" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." -msgstr "" +msgstr "Certains utilisateurs peuvent essayer d'exécuter des importations ou des exportations très fréquemment, ce que vous souhaitez limiter." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "" +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Limiter la fréquence à laquelle les utilisateurs peuvent importer et exporter" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "heures" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" -msgstr "" +msgstr "Modifier la limite" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Les utilisateurs ne peuvent actuellement pas démarrer les exportations d'utilisateurs. C'est le paramètre par défaut." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Il est actuellement impossible de permettre l'exportation des utilisateurs lorsque le stockage Azure est utilisé." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Activer les exportations de l'utilisateur" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Importer le livre" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Terminé" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Utilisateur" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Date de Mise à jour" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Éléments en attente" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Éléments réussis" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Aucun import correspondant trouvé." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Importation des utilisateurs" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5655,6 +6147,10 @@ msgstr "Modération" msgid "Reports" msgstr "Signalements" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5665,22 +6161,26 @@ msgstr "Domaines liés" msgid "System" msgstr "Système" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Statut de Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Paramètres de l’instance" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Paramètres du site" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5688,7 +6188,7 @@ msgstr "Paramètres du site" msgid "Registration" msgstr "Inscription" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5894,6 +6394,61 @@ msgstr "Résolus" msgid "No reports found." msgstr "Aucun signalement trouvé." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Tâches planifiées" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Tâches" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nom" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Tâche Celery" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Dernière modification" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Dernière exécution" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Période" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "ID tâche" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Activer" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Déprogrammer" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Pas de tâche programmée" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Tâches programmées" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Pas de tâche programmée trouvée" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -5978,7 +6533,7 @@ msgstr "Définir le thème par défaut de l'instance" #: bookwyrm/templates/settings/themes.html:19 msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." -msgstr "" +msgstr "L'un de vos thèmes semble défectueux. La sélection de ce thème rendra l'application inutilisable." #: bookwyrm/templates/settings/themes.html:28 msgid "Successfully added theme" @@ -6040,7 +6595,7 @@ msgstr "Thème Broken" #: bookwyrm/templates/settings/themes.html:152 msgid "Loaded successfully" -msgstr "" +msgstr "Chargé avec succès" #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:52 @@ -6089,7 +6644,7 @@ msgstr "Non défini" #: bookwyrm/templates/settings/users/user_info.html:20 msgid "This account is the instance actor for signing HTTP requests." -msgstr "" +msgstr "Ce compte est l'acteur de l'instance pour la signature des requêtes HTTP." #: bookwyrm/templates/settings/users/user_info.html:24 msgid "View user profile" @@ -6139,10 +6694,6 @@ msgstr "Abonné(e)s approuvés manuellement :" msgid "Discoverable:" msgstr "Visible publiquement :" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Raison de la désactivation :" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Détails de l’instance" @@ -6161,11 +6712,11 @@ msgstr "Actions de l'utilisateur" #: bookwyrm/templates/settings/users/user_moderation_actions.html:15 msgid "This is the instance admin actor" -msgstr "" +msgstr "Il s'agit de l'instance admin actor" #: bookwyrm/templates/settings/users/user_moderation_actions.html:18 msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." -msgstr "" +msgstr "Vous ne devez pas supprimer ou désactiver ce compte car il est essentiel au fonctionnement de votre serveur. Cet acteur signe les requêtes GET sortantes pour faciliter l'interaction avec les serveurs sécurisés d'ActivityPub." #: bookwyrm/templates/settings/users/user_moderation_actions.html:19 msgid "This account is not discoverable by ordinary users and does not have a profile page." @@ -6236,8 +6787,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Votre domaine semble être mal configuré. Il ne doit pas inclure de protocole ou de slashs." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Vous utilisez BookWyrm en mode production sans https. USE_HTTPS doit être activé en production." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6247,39 +6798,39 @@ msgstr "Paramètres" msgid "Instance domain:" msgstr "Domaine de l'instance :" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocole :" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Utilisation de S3 :" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Langue par défaut de l'interface :" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Activation des images d’aperçu :" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Activation de la réduction de taille des images :" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Est-ce que tout a l’air correct ?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "C'est votre dernière chance de configurer votre domaine et votre protocole." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Vous pouvez modifier les paramètres de votre instance dans le fichier .env sur votre serveur." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Voir les instructions d'installation" @@ -6296,7 +6847,7 @@ msgid "Need help?" msgstr "Besoin d’aide ?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Créer une étagère" @@ -6304,59 +6855,72 @@ msgstr "Créer une étagère" msgid "Edit Shelf" msgstr "Modifier l’étagère" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Tous les livres" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importer des livres" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s livre" msgstr[1] "%(formatted_count)s livres" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(affichage de %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Modifier l’étagère" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Supprimer l’étagère" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Date d’ajout" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Commencé" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Terminé" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Jusqu’à" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "Nous n'avons trouvé aucun livre correspondant à %(shelves_filter_query)s" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Cette étagère est vide" +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Filtrer par mot-clé" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Entrez le texte ici" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Inviter" @@ -6458,10 +7022,6 @@ msgstr "Attention spoilers !" msgid "Comment:" msgstr "Commentaire :" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Mettre à jour" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Publier" @@ -6487,7 +7047,7 @@ msgstr "À la page :" msgid "At percent:" msgstr "Au pourcentage :" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "à" @@ -6532,10 +7092,6 @@ msgstr "Appliquer les filtres" msgid "Follow @%(username)s" msgstr "S'abonner à @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "S’abonner" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Annuler la demande d’abonnement" @@ -6568,7 +7124,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "Le code source de BookWyrm est librement disponible. Vous pouvez contribuer ou rapporter des problèmes sur GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Aucune note" @@ -6580,7 +7136,7 @@ msgstr[0] "%(half_rating)s étoile" msgstr[1] "%(half_rating)s étoiles" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6809,6 +7365,10 @@ msgstr "Interrompre la lecture" msgid "Finish reading" msgstr "Terminer la lecture" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Voir la note" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Afficher le statut" @@ -7164,8 +7724,9 @@ msgid "View profile and more" msgstr "Voir le profil et plus" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Ce fichier dépasse la taille limite : 10 Mo" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7184,25 +7745,9 @@ msgstr[1] "%(num)d livres - par %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s (%(subtitle)s)" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Mises à jour de statut de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Critiques de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citations de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Commentaires de {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "un nouveau compte utilisateur" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/ga_IE/LC_MESSAGES/django.mo b/locale/ga_IE/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..704b8f7284 Binary files /dev/null and b/locale/ga_IE/LC_MESSAGES/django.mo differ diff --git a/locale/ga_IE/LC_MESSAGES/django.po b/locale/ga_IE/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2d88907f19 --- /dev/null +++ b/locale/ga_IE/LC_MESSAGES/django.po @@ -0,0 +1,7866 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Irish\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ga-IE\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo index 0ac268fcc2..3626a52123 100644 Binary files a/locale/gl_ES/LC_MESSAGES/django.mo and b/locale/gl_ES/LC_MESSAGES/django.mo differ diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po index 95a88b6b85..98ae9850e4 100644 --- a/locale/gl_ES/LC_MESSAGES/django.po +++ b/locale/gl_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-03-07 14:46\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-09 04:44\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Galician\n" "Language: gl\n" @@ -33,56 +33,55 @@ msgstr "Un mes" msgid "Does Not Expire" msgstr "Non caduca" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} usos" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Sen límite" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Contrasinal incorrecto" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "O contrasinal non concorda" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Contrasinal incorrecto" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "A data final da lectura non pode ser anterior á de inicio." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "A data do abandono da lectura non pode ser anterior á de inicio." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "A data de abandono da lectura non pode estar no futuro." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "A data de fin da lectura non pode ser futura." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "As credenciais non son correctas" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Xa existe unha usuaria con este identificador" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Xa existe unha usuaria con este email." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Non se pode rexistrar este enderezo de correo." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Código incorrecto" @@ -90,7 +89,7 @@ msgstr "Código incorrecto" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este dominio está bloqueado. Contacta coa administración se cres que é un erro." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Esta ligazón co tipo de ficheiro xa foi engadida para este libro. Se non é visible, o dominio aínda está pendente." @@ -102,8 +101,8 @@ msgstr "Orde da lista" msgid "Book Title" msgstr "Título do libro" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Valoración" @@ -145,8 +144,8 @@ msgstr "Perigo" msgid "Automatically generated report" msgstr "Denuncia creada automáticamente" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Eliminado pola moderación" msgid "Domain block" msgstr "Bloqueo de dominio" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audiolibro" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Novela gráfica" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Tapa dura" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Libro de bolso" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s non semella ser un ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s non ten a suma de comprobación ISBN correcta, agardábase %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentario" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recensión" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Cita" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Seguir" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "Erro descoñecido ao importar o libro" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "non autorizado" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "Erro descoñecido ao importar o estado do libro" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "erro_na_conexión" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "realación_non_válida" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "Erro descoñecido ao importar a relación" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s non é un remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s non é un nome de usuaria válido" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "identificador" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Xa existe unha usuaria con ese identificador." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,15 +300,15 @@ msgstr "Xa existe unha usuaria con ese identificador." msgid "Public" msgstr "Público" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 #: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 msgid "Unlisted" -msgstr "Non listado" +msgstr "Fóra das listas" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Non listado" msgid "Followers" msgstr "Seguidoras" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Seguidoras" msgid "Private" msgstr "Privado" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Activa" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Completa" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Detida" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importación detida" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Erro ao cargar o libro" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Non se atopan coincidencias para o libro" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Fallou" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratuíto" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Dispoñible" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" -msgstr "Dispoñible para aluguer" +msgstr "Dispoñible para préstamo" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprobado" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Comentario" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Denuncia resolta" @@ -363,123 +429,159 @@ msgstr "Dominio aprobado" msgid "Deleted item" msgstr "Elemento eliminado" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "Descoñecido" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Publicación de %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Comentario de %(display_name)s en %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "Cita de %(display_name)s en %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "Recensión de %(display_name)s en %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s valorou %(book_title)s: %(display_rating).1f estrela" +msgstr[1] "%(display_name)s valorou %(book_title)s: %(display_rating).1f estrelas" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Recensións" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Comentarios" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citas" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "As outras cousas" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Cronoloxía de Inicio" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Inicio" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Cronoloxía de libros" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Libros" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Inglés)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Catalan)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Alemán)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Español)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Éuscaro)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galego)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Coreano)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finés)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Francés)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Paises Baixos (Dutch)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Noruegués)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polaco)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugués brasileiro)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugués europeo)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Rumanés)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (Ucraíno)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinés simplificado)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinés tradicional)" @@ -502,7 +604,7 @@ msgstr "Se cres que deberías ter acceso, por favor contacta coa administración #: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 msgid "Not Found" -msgstr "Non se atopa" +msgstr "Non se atopou" #: bookwyrm/templates/404.html:9 msgid "The page you requested doesn't seem to exist!" @@ -517,11 +619,8 @@ msgid "The file you are uploading is too large." msgstr "O ficheiro que estás a subir é demasiado grande." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -"Podes intentalo usando un ficheiro máis pequeno, ou pedir á administración do teu BookWyrm que aumente o axuste DATA_UPLOAD_MAX_MEMORY_SIZE. " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Podes intentalo usando un ficheiro máis pequeno, ou pedir á administración do teu BookWyrm que aumente o axuste DATA_UPLOAD_MAX_MEMORY_SIZE." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -538,7 +637,7 @@ msgstr "Algo fallou! Lamentámolo." #: bookwyrm/templates/about/about.html:9 #: bookwyrm/templates/about/layout.html:35 msgid "About" -msgstr "Acerca de" +msgstr "Sobre" #: bookwyrm/templates/about/about.html:21 #: bookwyrm/templates/get_started/layout.html:22 @@ -568,7 +667,7 @@ msgstr "%(title)s é o libro con valoraci #: bookwyrm/templates/about/about.html:94 msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." -msgstr "Rexistra as túas lecturas, conversa acerca dos libros, escribe recensións e descubre próximas lecturas. Sempre sen publicidade, anti-corporacións e orientado á comunidade, BookWyrm é software a escala humana, deseñado para ser pequeno e persoal. Se queres propoñer novas ferramentas, informar de fallos, ou colaborar, contacta con nós e deixa oír a túa voz." +msgstr "Rexistra as túas lecturas, conversa sobre os libros, escribe recensións e descubre próximas lecturas. Sempre sen publicidade, anti-corporacións e orientado á comunidade, BookWyrm é software a escala humana, deseñado para ser pequeno e persoal. Se queres propoñer novas ferramentas, informar de fallos, ou colaborar, contacta con nós e deixa oír a túa voz." #: bookwyrm/templates/about/about.html:105 msgid "Meet your admins" @@ -617,7 +716,7 @@ msgid "Statuses posted:" msgstr "Estados publicados:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versión do software:" @@ -626,7 +725,7 @@ msgstr "Versión do software:" #: bookwyrm/templates/snippets/footer.html:8 #, python-format msgid "About %(site_name)s" -msgstr "Acerca de %(site_name)s" +msgstr "Sobre %(site_name)s" #: bookwyrm/templates/about/layout.html:47 #: bookwyrm/templates/about/privacy.html:4 @@ -666,7 +765,7 @@ msgstr "Copiado!" #: bookwyrm/templates/annual_summary/layout.html:77 msgid "Sharing status: public with key" -msgstr "Compartir estado: público con chave" +msgstr "Compartir estado: público con clave" #: bookwyrm/templates/annual_summary/layout.html:78 msgid "The page can be seen by anyone with the complete address." @@ -690,7 +789,7 @@ msgstr "Facer pública a páxina" #: bookwyrm/templates/annual_summary/layout.html:99 msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." -msgstr "Cando fas privada unha páxina, a chave antiga non dará acceso á mesma nunca máis. Crearase unha nova chave se volves a facer pública a páxina." +msgstr "Cando fas privada unha páxina, a clave antiga non dará acceso á mesma nunca máis. Crearase unha nova clave se volves a facer pública a páxina." #: bookwyrm/templates/annual_summary/layout.html:112 #, python-format @@ -717,8 +816,8 @@ msgstr "Esto fai unha media de %(pages)s páxinas por libro." #, python-format msgid "(No page data was available for %(no_page_number)s book)" msgid_plural "(No page data was available for %(no_page_number)s books)" -msgstr[0] "(Non hai datos acerca das páxinas para %(no_page_number)s libro)" -msgstr[1] "(Non hai datos acerca das páxinas para %(no_page_number)s libros)" +msgstr[0] "(Non hai datos do número de páxinas para %(no_page_number)s libro)" +msgstr[1] "(Non hai datos do número de páxinas para %(no_page_number)s libros)" #: bookwyrm/templates/annual_summary/layout.html:150 msgid "Their shortest read this year…" @@ -727,7 +826,7 @@ msgstr "A lectura máis curta deste ano…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -807,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Ver en Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Sitio web" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Ver rexistro ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Ver en ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Cargar datos" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Ver en OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Ver en Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Ver en LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Ver en Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Libros de %(name)s" @@ -881,8 +984,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separa múltiples valores con vírgulas." @@ -894,50 +997,54 @@ msgstr "Bio:" msgid "Wikipedia link:" msgstr "Ligazón a Wikipedia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Sitio web:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data de nacemento:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data do falecemento:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identificación da autoría" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" -msgstr "Chave en Openlibrary:" +msgstr "Clave en Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID en Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" -msgstr "Chave en Librarything:" +msgstr "Clave en Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" -msgstr "Chave en Goodreads:" +msgstr "Clave en Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -945,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -959,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Gardar" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -976,6 +1083,7 @@ msgstr "Gardar" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -993,100 +1101,104 @@ msgstr "Ao cargar os datos vas conectar con %(source_name)s e c #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Confirmar" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Non se pode conectar coa fonte remota." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Editar libro" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Preme para engadir portada" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Fallou a carga da portada" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Preme para agrandar" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "Ver en Finna" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s recensión)" msgstr[1] "(%(review_count)s recensións)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Engadir descrición" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrición:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s edición" msgstr[1] "%(count)s edicións" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Puxeches esta edición no estante:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Hai unha edición diferente deste libro no teu estante %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Actividade lectora" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Engadir datas de lectura" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Non tes actividade lectora neste libro." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "As túas recensións" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Os teus comentarios" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "As túas citas" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Temas" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1094,18 +1206,18 @@ msgstr "Lugares" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Engadir á lista" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1128,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN copiado!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "ASIN Audible:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ID ISFDB:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "ID en Finna:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Engadir portada" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Subir portada:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Cargar portada desde URL:" @@ -1201,7 +1323,7 @@ msgstr "Confirma info do libro" #: bookwyrm/templates/book/edit/edit_book.html:78 #, python-format msgid "Is \"%(name)s\" one of these authors?" -msgstr "É \"%(name)s\" un destas autoras?" +msgstr "É \"%(name)s\" unha destas autoras?" #: bookwyrm/templates/book/edit/edit_book.html:89 #, python-format @@ -1235,7 +1357,7 @@ msgid "This is a new work" msgstr "Este é un novo traballo" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1288,125 +1410,129 @@ msgstr "Atrás" msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Orde por título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Número da serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Temas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Engadir tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Eliminar tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Engadir outro tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publicación" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editorial:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Data da primeira edición:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data de publicación:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autoría" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Eliminar %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Páxina de autora para %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Engadir autoras:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Engadir Autora" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Xoana Pedre" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Engade outra Autora" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Portada" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Propiedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detalles do formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Páxinas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identificadores do libro" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "ID en Openlibrary:" @@ -1434,7 +1560,7 @@ msgid "Any" msgstr "Calquera" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Idioma:" @@ -1495,12 +1621,15 @@ msgid "Domain" msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1512,8 +1641,8 @@ msgstr "Estado" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1557,10 +1686,10 @@ msgstr "Saír de BookWyrm" #: bookwyrm/templates/book/file_links/verification_modal.html:11 #, python-format msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" -msgstr "Esta ligazón vaite levar a: %(link_url)s.
    É ahí a onde queres ir?" +msgstr "Esta ligazón vaite levar a: %(link_url)s.
    É aí a onde queres ir?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continuar" @@ -1616,7 +1745,19 @@ msgstr "Libro non ordenado" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Ao cargar os datos vas conectar con %(source_name)s e comprobar se existen metadatos deste libro que non están aquí presentes. Non se sobrescribirán os datos existentes." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Editar a recensión" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Editar cita" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Editar o comentario" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Editar estado" @@ -1643,7 +1784,7 @@ msgstr "Código de confirmación:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Enviar" @@ -1725,17 +1866,17 @@ msgstr "Suxerido" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 msgid "Locked account" -msgstr "Conta bloqueada" +msgstr "Conta protexida" #: bookwyrm/templates/directory/user_card.html:40 msgid "follower you follow" @@ -1755,7 +1896,7 @@ msgstr "publicacións" #: bookwyrm/templates/directory/user_card.html:61 msgid "last active" -msgstr "último activo" +msgstr "última actividade" #: bookwyrm/templates/directory/user_type_filter.html:5 msgid "User type" @@ -1851,8 +1992,8 @@ msgstr "Ola," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm hospedado en %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm hospedado en %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1870,8 +2011,8 @@ msgstr "Únete agora" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Coñece máis acerca de %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Coñece mais sobre %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -1881,7 +2022,7 @@ msgstr "Foches convidada a unirte a %(site_name)s! Preme na ligazón para crear #: bookwyrm/templates/email/invite/text_content.html:8 #, python-format msgid "Learn more about %(site_name)s:" -msgstr "Coñece máis acerca de %(site_name)s:" +msgstr "Coñece máis sobre %(site_name)s:" #: bookwyrm/templates/email/moderation_report/html_content.html:8 #: bookwyrm/templates/email/moderation_report/text_content.html:6 @@ -2047,19 +2188,19 @@ msgid "Add to your books" msgstr "Engadir aos teus libros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Pendentes" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Lectura actual" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2068,7 +2209,7 @@ msgid "Read" msgstr "Lidos" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Abandonados" @@ -2101,7 +2242,7 @@ msgstr "Podes engadir libros cando comeces a usar %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Buscar" @@ -2172,7 +2313,7 @@ msgstr "Resumo:" #: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" -msgstr "Algo acerca de ti" +msgstr "Un petisco de ti" #: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 @@ -2407,7 +2548,7 @@ msgstr "Tes unha lectura favorita que les cada ano? Tamén consideramos este cas #: bookwyrm/templates/guided_tour/book.html:79 msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." -msgstr "Pode haber varias edicións para o mesmo libro, en varios formatos ou idiomas. Podes elexir a edición que queres usar." +msgstr "Pode haber varias edicións para o mesmo libro, en varios formatos ou idiomas. Podes escoller a edición que queres usar." #: bookwyrm/templates/guided_tour/book.html:80 msgid "Other editions" @@ -2465,7 +2606,7 @@ msgstr "Privacidade da publicación" #: bookwyrm/templates/guided_tour/book.html:248 msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." -msgstr "Algúns libros pódense descargar gratuítamente desde fontes externas. Mostrarase aquí." +msgstr "Algúns libros pódense descargar gratuítamente desde orixes externas. Mostrarase aquí." #: bookwyrm/templates/guided_tour/book.html:249 msgid "Download links" @@ -2753,6 +2894,7 @@ msgstr "Podes crear ou unirte a un grupo con outras persoas. Os grupos poden cre #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupos" @@ -2867,18 +3009,20 @@ msgid "You have %(display_left)s left." msgstr "Aínda podes importar %(display_left)s libros." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "De media, ás importacións recentes levoulles %(hours)s horas." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "De media, ás importacións recentes levoulles %(minutes)s minutos." #: bookwyrm/templates/import/import.html:52 msgid "Data source:" -msgstr "Fonte de datos:" +msgstr "Orixe dos datos:" #: bookwyrm/templates/import/import.html:58 msgid "Goodreads (CSV)" @@ -2897,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Podes descargar os teus datos de Goodreads desde a páxina de Exportación/Importación da túa conta Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Ficheiro de datos:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Incluír recensións" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Axuste de privacidade para recensións importadas:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Crear novos estantes se non existisen" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Axuste de privacidade para as recensións e estantes importados:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importar" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Acadaches o límite de importacións." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "As importacións están temporalmente desactivadas; grazas pola paciencia." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importacións recentes" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Data de creación" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Última actualización" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementos" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Sen importacións recentes" @@ -2983,20 +3139,24 @@ msgid "Imports" msgstr "Importacións" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importación iniciada:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "En progreso" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Actualizar" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Deter a importación" @@ -3013,6 +3173,7 @@ msgid "Review items" msgstr "Revisar elementos" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3020,6 +3181,7 @@ msgstr[0] "fallou a importación de %(display_counter)s elemento." msgstr[1] "fallou a importación de %(display_counter)s elementos." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Ver e arranxar os problemas" @@ -3028,22 +3190,24 @@ msgid "Row" msgstr "Fila" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Título" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" #: bookwyrm/templates/import/import_status.html:117 msgid "Openlibrary key" -msgstr "Chave en Openlibrary" +msgstr "Clave en Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autoría" @@ -3051,13 +3215,9 @@ msgstr "Autoría" msgid "Shelf" msgstr "Estante" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recensión" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Libro" @@ -3075,6 +3235,8 @@ msgid "View imported review" msgstr "Ver revisión importada" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importado" @@ -3110,114 +3272,119 @@ msgstr "Se queres migrar estados (comentarios, recensións ou citas) debes ou be #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Actualmente podes importar unha usuaria cada %(user_import_hours)s horas." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "Actualmente podes importar unha conta cada %(hours)s horas." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "Poderás volver a importar un ficheiro de usuaria en %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Poderás volver a importar un ficheiro con datos da conta en %(next_time)s" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Paso 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Escolle un ficheiro de exportación creado noutra conta BookWyrm. O formato do ficheiro ten que ser .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Paso 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Desmarca calquera opción dos datos que non queiras incluír ao facer a importación." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Perfil da usuaria" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Sobrescribir nome público, resumo e avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Axustes de usuaria" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Sobrescribe:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "Se é requerida a aprobación manual das solicitudes de seguimento" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "Se se mostran no teu perfil os seguimentos/seguidoras" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "Se se mostra o teu obxectivo de lectura no perfil" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "Se se mostrarán suxestións de seguimento" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Se a túa conta será suxerida a outras persoas" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "A túa zona horaria" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "Os axustes de privacidade por defecto para as publicacións" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Seguidoras e seguimentos" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Bloqueos de usuarias" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Obxectivos de lectura" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Sobrescribe os obxectivos de lectura para todos os anos incluídos no ficheiro de importación" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Estantes" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Historial de lectura" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Recensións de libros" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Comentarios sobre libros" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Listas de libros" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Listas gardadas" @@ -3241,15 +3408,18 @@ msgid "Reject" msgstr "Rexeitar" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" -msgstr "Elementos fallidos" +msgstr "Elementos que fallaron" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Arranxar problemas" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Realizar outra vez a importación pode recuperar elementos que faltan en casos como:" @@ -3258,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "O libro foi engadido á instancia desde esta importación" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." -msgstr "Un fallo temporal ou de conexión fixo que a fonte externa de datos non estivese dispoñible." +msgstr "Un fallo temporal ou de conexión fixo que a orixe externa de datos non estivese dispoñible." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" -msgstr "Actualizouse BookWyrm desde a importación arranxando algún fallo" +msgstr "Actualizouse BookWyrm desde esta importación arranxando algún fallo" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Contacta coa administración ou abre unha incidencia se atopas fallos non agardados." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Estado da Importación de contas" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Estado do reintento de importación de contas" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Importación de usuarias" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Total" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Estados" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Seguimentos e Bloqueos" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Libros importados" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Resolución de problemas coa importación" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "Non estableceches a conta como un alias da conta da usuaria orixinal" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "O reintento da importación non funcionará en casos como:" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "A usuaria, estado, ou servidor Bookwyrm foron eliminados despois da creación do ficheiro de importación" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "A importación de estados cando a túa antiga conta foi eliminada" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "Actualmente tes permiso para importar ou reintentar unha conta cada %(hours)s horas." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Poderás volver a intentar esta importación en %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Relación" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Motivo" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Crear unha Conta" @@ -3323,7 +3568,7 @@ msgid "Login" msgstr "Acceder" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Accede" @@ -3339,24 +3584,24 @@ msgstr "Correcto! Enderezo de email confirmado." msgid "Username:" msgstr "Identificador:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Contrasinal:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Esqueceches o contrasinal?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" -msgstr "Máis acerca deste sitio" +msgstr "Máis sobre este sitio" #: bookwyrm/templates/landing/password_reset.html:43 #: bookwyrm/templates/preferences/change_password.html:33 @@ -3382,7 +3627,7 @@ msgstr "Restablecer contrasinal" msgid "Reactivate Account" msgstr "Reactivar conta" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Reactivar conta" @@ -3392,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "Busca en %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Busca un libro, usuaria ou lista" +msgid "Search for a book, author, user, or list" +msgstr "Buscar por título, autoría, usuarias ou listas" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3481,7 +3726,7 @@ msgstr "Suxerido por" #: bookwyrm/templates/lists/curate.html:77 msgid "Discard" -msgstr "Descartar" +msgstr "Desbotar" #: bookwyrm/templates/lists/delete_list_modal.html:4 msgid "Delete this list?" @@ -3545,11 +3790,11 @@ msgstr "As persoas do grupo poden engadir e eliminar libros desta lista" #: bookwyrm/templates/lists/form.html:90 msgid "Select Group" -msgstr "Elexir grupo" +msgstr "Escoller grupo" #: bookwyrm/templates/lists/form.html:94 msgid "Select a group" -msgstr "Elexir un grupo" +msgstr "Escoller un grupo" #: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" @@ -3606,6 +3851,8 @@ msgid "List position" msgstr "Posición da lista" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Establecer" @@ -3930,7 +4177,7 @@ msgstr "%(related_user)s e outras %(other_ #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Hai un novo dominio que revisar" msgstr[1] "Hai %(display_count)s novos dominios que revisar" @@ -4101,21 +4348,21 @@ msgstr "Xa estás a seguir a %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Xa solicitaches seguir a %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Seguir a %(username)s no fediverso" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Segue a %(username)s desde outra conta no Fediverso como BookWyrm, Mastodon ou Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "ID da usuaria desde onde seguir:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Seguir!" @@ -4125,7 +4372,7 @@ msgstr "Seguir no Fediverso" #: bookwyrm/templates/ostatus/remote_follow_button.html:19 msgid "This link opens in a pop-up window" -msgstr "Esta ligazón abre unha ventá emerxente" +msgstr "Esta ligazón abre unha xanela emerxente" #: bookwyrm/templates/ostatus/subscribe.html:8 #, python-format @@ -4154,82 +4401,14 @@ msgstr "Primeiro hai que acceder..." #: bookwyrm/templates/ostatus/subscribe.html:51 #, python-format msgid "Follow %(username)s" -msgstr "Segue a %(username)s" +msgstr "Sigue a %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Estás a seguir a %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Autenticación con dous factores" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Axustes 2FA actualizados correctamente" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Escribe ou copia estos códigos nalgún lugar seguro." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Telos que utilizar en orde, e non volverán a ser mostrados." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "O Segundo Factor de Autenticación está activado para a túa conta." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Desactivar 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Podes crear códigos de apoio para usar en caso de que non teñas acceso á app de autenticación. Podes crear novos códigos, pero os códigos antigos deixarán de ser válidos." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Crear códigos de apoio" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Escanea o código QR coa túa app de autenticación e escribe aquí o código que apareza nela para confirmar que configuraches a app." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Usa a clave de configuración" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nome da conta:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Código:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Escribe o código da túa app:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Podes mellorar a seguridade da túa conta usando un Segundo Factor de Autenticación (2FA). Pediráseche un código temporal de un só uso procedente dunha app como Authy, Google Authenticator ou Microsoft Authenticator cada vez que accedas." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Confirma o teu contrasinal para comezar a usar 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Configurar 2FA" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 @@ -4329,6 +4508,12 @@ msgstr "Eliminar a conta de xeito definitivo" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Se eliminas a conta non haberá volta atrás. O identificador non estará dispoñible para rexistro no futuro." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Desactivar 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Desactivar o Segundo Factor de Autenticación" @@ -4358,12 +4543,12 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Axustes" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacidade" @@ -4372,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Mostrar info do obxectivo de lectura na cronoloxía" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Mostrar valoracións" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Mostrar usuarias suxeridas" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Mostrar esta conta en usuarias suxeridas" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "A túa conta aparecerá no directorio, e podería ser recomendada a outras usuarias de BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Zona horaria preferida: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Decorado:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Aprobar manualmente os seguimentos" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Agochar relacións de seguimento no perfil" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Privacidade por defecto:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Queres privacidade para os estantes? Podes establecer individualmente o nivel de privacidade dos estantes. Vai a Os teus libros, elixe un estante das seccións, e preme en \"Editar estante\"" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "Exportar Conta BookWyrm" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "Podes crear aquí o ficheiro de exportación. Con este ficheiro podes migrar os teus datos a outra conta BookWyrm." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    O ficheiro incluirá:

    • Perfil de usuaria
    • Moitos dos axustes de usuaria
    • Obxectivos de lectura
    • Estantes
    • Historial de lectura
    • Recensións de libros
    • Estados
    • As túas listas e listas gardadas
    • As usuarias que segues e bloqueas

    O ficheiro non incluirá:

    • Mensaxes directas
    • Respostas aos teus estados
    • Grupos
    • Favoritos
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "O teu ficheiro vai incluír:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "A maioría dos axustes de usuaria" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "As túas listas e as listas gardadas" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "As usuarias que segues e bloqueas" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "O ficheiro non incluirá:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "As mensaxes directas" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "As respostas ás túas publicacións" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favoritas" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." -msgstr "Na túa nova conta BookWyrm podes elexir o que importar: non tes que importar todos os elementos exportados." +msgstr "Na túa nova conta BookWyrm podes escoller o que queres importar: non tes que importar todos os elementos exportados." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "Se desexas migrar todos os estados (comentarios, recensións ou citas) tes que ou ben establecer a conta que estas a mover como un alias de esta, ou ben mover esta conta á nova conta, antes de importar os teus datos de usuaria." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Actualmente están desactivadas as exportacións." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "Os axustes de exportación de usuarias poden cambiarse na páxina de Importacións no taboleiro de Administración." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "Poderás crear un novo ficheiro de exportación en %(next_available)s" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "De media, ás exportacións recentes levoulles %(hours)s horas." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "De media, ás exportacións recentes levoulles %(minutes)s minutos." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Crear ficheiro de exportación de usuaria" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Exportacións recentes" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "Os ficheiros de exportación mostrará 'completo' cando estean preparados. Podería levarlle un anaco. Preme na ligazón para descargar o ficheiro." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "Os ficheiros de exportación vanse eliminar en %(expiry_hours)s hora." +msgstr[1] "Os ficheiros de exportación vanse eliminar en %(expiry_hours)s horas." + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Data" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Tamaño" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Descarga a exportación" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "O arquivo xa non está dispoñible" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4478,6 +4727,10 @@ msgstr "Descargar ficheiro" msgid "Account" msgstr "Conta" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "Configuración da seguridade" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Migrar Conta" @@ -4515,6 +4768,124 @@ msgstr "Lembra engadir esta usuaria como un alcume na outra conta antes de reali msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Escribe o identificador da conta á cal queres migrar, ex. usuaria@exemplo.com:" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "Seguridade da conta" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Autenticación con dous factores" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Axustes 2FA actualizados correctamente" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Escribe ou copia estos códigos nalgún lugar seguro." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Telos que utilizar en orde, e non volverán a ser mostrados." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "O Segundo Factor de Autenticación está activado para a túa conta." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Podes crear códigos de apoio para usar en caso de que non teñas acceso á app de autenticación. Podes crear novos códigos, pero os códigos antigos deixarán de ser válidos." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Crear códigos de apoio" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Escanea o código QR coa túa app de autenticación e escribe aquí o código que apareza nela para confirmar que configuraches a app." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Usa a clave de configuración" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nome da conta:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Código:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Escribe o código da túa app:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Podes mellorar a seguridade da túa conta usando un Segundo Factor de Autenticación (2FA). Pediráseche un código temporal de un só uso procedente dunha app como Authy, Google Authenticator ou Microsoft Authenticator cada vez que accedas." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Confirma o teu contrasinal para comezar a usar 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Configurar 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "Sesións" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "Poderían non mostrarse algunhas sesións antigas." + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "Non tes sesión iniciada nas seguintes sesións:" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "Data do primeiro acceso" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "Enderezo IP" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "IP" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "Sistema operativo" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "SO" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "Navegador web" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "Navegador" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "Ti" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "Fechar sesión" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "Non podemos mostrar as sesións iniciadas." + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4560,6 +4931,7 @@ msgstr "Comecei a ler" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progreso" @@ -4690,8 +5062,8 @@ msgstr "Termos a buscar" msgid "Search type" msgstr "Tipo de busca" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4701,12 +5073,12 @@ msgstr "Tipo de busca" msgid "Users" msgstr "Usuarias" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Sen resultados para \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4728,7 +5100,7 @@ msgstr "Editar" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Anuncios" @@ -4746,13 +5118,13 @@ msgstr "Falso" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data de inicio:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data de fin:" @@ -4821,7 +5193,6 @@ msgstr "Cor:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Regras de auto-moderación" @@ -4834,35 +5205,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Usuarias e estados que xa foron denunciados (independentemente de se xa foi resolta a denuncia) non serán marcados." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Programar:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Última execución:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Veces executado:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Activado:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Eliminar programación" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Executar agora" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Non se actualizará a data da última execución" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Programar escaneo" @@ -4907,6 +5286,7 @@ msgstr "Eliminar regra" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Estado de Celery" @@ -4924,7 +5304,7 @@ msgstr "Transmisións" #: bookwyrm/templates/settings/celery.html:32 msgid "Broadcast" -msgstr "" +msgstr "Difusión" #: bookwyrm/templates/settings/celery.html:38 msgid "Inbox" @@ -4935,6 +5315,7 @@ msgid "Import triggered" msgstr "Comezou a importación" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Conectores" @@ -4978,8 +5359,9 @@ msgid "Active Tasks" msgstr "Tarefas activas" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4992,6 +5374,8 @@ msgid "Run time" msgstr "Tempo de execución" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioridade" @@ -5024,6 +5408,66 @@ msgstr "A limpeza das colas pode causar problemas importantes incluíndo perda d msgid "Errors" msgstr "Erros" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "Finna.fi é un servizo de busca que obtén datos de centos de organizacións finesas nun único lugar." + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "Crear un novo conector" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Razón da desactivación:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Desactivar" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "Activar" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "Axustes do conector" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "Os Conectores son orixes de datos para autorías e libros." + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "A prioridade determina a orde na que aparecen os resultados. A prioridade máis alta é 1. A prioridade por defecto é 2." + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "Os axustes do conector só determinan se o conector será utilizado para obter resultados de busca. Para xestionar máis interaccións con outros servidores federados, incluíndo bloqueos de dominios, lee" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Instancias federadas" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "debería actualizarse. Comproba as notas da publicación recentes para máis información." + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Actualizar" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5031,7 +5475,7 @@ msgid "Dashboard" msgstr "Taboleiro" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Total de usuarias" @@ -5040,40 +5484,36 @@ msgstr "Total de usuarias" msgid "Active this month" msgstr "Activas este mes" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Estados" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Traballos" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Actividade na instancia" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervalo:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Días" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Semanas" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Rexistros de usuarias" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Actividade do estado" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Traballos creados" @@ -5085,9 +5525,13 @@ msgstr "Rexistros" msgid "Statuses posted" msgstr "Estados publicados" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Queres comprobar automáticamente se hai novas versións de BookWyrm? (recomendado)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Programar comprobación" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5169,7 +5613,7 @@ msgstr "Non tes dominios de email bloqueados" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Configuración do email" @@ -5182,7 +5626,7 @@ msgid "Successfully sent test email." msgstr "Enviouse correctamente o email de proba." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Remitente do email:" @@ -5230,15 +5674,6 @@ msgstr "Enviar email de proba" msgid "Add instance" msgstr "Engadir instancia" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Instancias federadas" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5314,12 +5749,6 @@ msgstr "Notas" msgid "No notes" msgstr "Sen notas" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Tódalas usuarias desta instancia serán desactivadas." @@ -5372,6 +5801,49 @@ msgstr "Software" msgid "No instances found" msgstr "Non hai instancias" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "Mantemento de ficheiros" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "Programar eliminación de ficheiros" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "Esta tarefa elimina a exportación subida pola usuaria e ficheiros de importación que xa caducaron." + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "Caducidade dos ficheiros de exportación" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "Período máximo para ficheiros de exportación, en horas" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "Os ficheiros máis antigos serán eliminados." + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "Establecer horas para caducidade" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "Ficheiros caducados" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Completada" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "Actualizouse correctamente a caducidade" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5418,7 +5890,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Algunhas usuarias poderían querer importar un número enorme de libros, podes poñerlle límite." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Establece un valor de 0 para non poñer un límite." @@ -5438,62 +5910,81 @@ msgstr "días." msgid "Set limit" msgstr "Establecer" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Desactivar realizar novas exportacións de usuarias" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Isto pretende ser útil cando algo funciona realmente mal coas exportacións e precisas deter esta ferramenta para intentar resolver o problema." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Cando están desactivadas as exportacións as usuarias non poderán realizar novas exportacións, pero as existentes non se verán afectadas." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Desactivar exportacións" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "Limitar a frecuencia con que se pode importar e exportar" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "Algunhas usuarias poderían intentar importar ou exportar usuarias con moita frecuencia, poderías querer limitalas." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Permitir importación e exportación de usuarias a unha vez cada " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Limitar a frecuencia coa que as usuarias poden importar ou exportar datos de usuaria" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "horas" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "Cambiar límite" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Actualmente as usuarias non pode iniciar novas exportacións. Este é o valor por defecto." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Actualmente non podemos proporcionar exportacións cando se usa a almacenaxe Azure." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Activar exportacións das usuarias" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Importación de libros" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Completada" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Usuaria" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Data de actualización" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Elementos pendentes" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Elementos correctos" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Non se atopan importacións que concorden." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Importación de usuarias" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5657,6 +6148,10 @@ msgstr "Moderación" msgid "Reports" msgstr "Denuncias" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "Regras para Moderación Automática" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5667,22 +6162,26 @@ msgstr "Dominios das ligazóns" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Estado Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "Tarefas programadas" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "Mantemento de ficheiros" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Axustes da instancia" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Axustes da web" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5690,7 +6189,7 @@ msgstr "Axustes da web" msgid "Registration" msgstr "Rexistro" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5896,6 +6395,61 @@ msgstr "Resoltas" msgid "No reports found." msgstr "Non hai denuncias." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Programar tarefas" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Tarefas" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nome" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Tarefa Celery" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Data cambiada" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Última execución" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Programar" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "ID da promación" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Activada" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Desbotar" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Sen tarefas programadas" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Programacións" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Non hai programacións" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6123,7 +6677,7 @@ msgstr "(Ver denuncias)" #: bookwyrm/templates/settings/users/user_info.html:71 msgid "Blocked by count:" -msgstr "Bloqueada pola conta:" +msgstr "Bloqueada por:" #: bookwyrm/templates/settings/users/user_info.html:74 msgid "Date added:" @@ -6141,10 +6695,6 @@ msgstr "Seguidoras aprobadas manualmente:" msgid "Discoverable:" msgstr "Atopable:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Razón da desactivación:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detalles da instancia" @@ -6207,7 +6757,7 @@ msgstr "Chave de admin:" #: bookwyrm/templates/setup/admin.html:32 msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." -msgstr "Creouse unha chave de Admin ao instalar BookWyrm. Podes obter a túa chave executando ./bw-dev admin_code desde a liña de comandos do teu servidor." +msgstr "Creouse unha clave de Admin ao instalar BookWyrm. Podes obter a túa clave con ./bw-dev admin_code na liña de comandos do servidor." #: bookwyrm/templates/setup/admin.html:45 msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." @@ -6219,7 +6769,7 @@ msgstr "Unha vez configurada a instancia, poderás conceder a outras usuarias o #: bookwyrm/templates/setup/admin.html:55 msgid "Learn more about moderation" -msgstr "Aprende máis acerca da moderación" +msgstr "Aprende máis sobre a moderación" #: bookwyrm/templates/setup/config.html:5 msgid "Instance Configuration" @@ -6238,8 +6788,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Semella non está ben configurado o dominio. Non debería incluír o protocolo nin barras." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Estás executando BookWyrm en modo produción sen https. En produción, USE_HTTPS debería estar activado." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "Estás a usar BookWyrm con localhost. Isto non debería usarse nunca nun entorno de produción." #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6249,39 +6799,39 @@ msgstr "Axustes" msgid "Instance domain:" msgstr "Dominio da instancia:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocolo:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "URL base da instancia:" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Usando S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Idioma por defecto da interface:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Activar vista previa de imaxes:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Activar miniaturas das imaxes:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Está todo ben?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Esta é a última oportunidade para establecer o dominio e protocolo." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Podes cambiar os axustes da instancia no ficheiro .env no teu servidor." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Ver instruccións de instalación" @@ -6298,7 +6848,7 @@ msgid "Need help?" msgstr "Precisas axuda?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Crear estante" @@ -6306,59 +6856,72 @@ msgstr "Crear estante" msgid "Edit Shelf" msgstr "Editar estante" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Todos os libros" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importar libros" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s libro" msgstr[1] "%(formatted_count)s libros" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(mostrando %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Editar estante" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Eliminar estante" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "No estante" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Comezado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Rematado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Ata" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "Non atopamos ningún libro que concorde con %(shelves_filter_query)s" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Este estante esta baleiro." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Filtrar por palabra" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Escribe aquí o texto" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Convidar" @@ -6460,10 +7023,6 @@ msgstr "Contén Spoilers!" msgid "Comment:" msgstr "Comentario:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Actualizar" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Publicar" @@ -6489,7 +7048,7 @@ msgstr "Na páxina:" msgid "At percent:" msgstr "Na porcentaxe:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "para" @@ -6534,10 +7093,6 @@ msgstr "Aplicar filtros" msgid "Follow @%(username)s" msgstr "Seguir a @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Seguir" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Retirar solicitude de seguimento" @@ -6570,7 +7125,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Sen avaliar" @@ -6582,7 +7137,7 @@ msgstr[0] "%(half_rating)s estrela" msgstr[1] "%(half_rating)s estrelas" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6682,7 +7237,7 @@ msgstr "páxina %(page)s" #: bookwyrm/templates/snippets/pagination.html:13 msgid "Newer" -msgstr "Máis novo" +msgstr "Máis recente" #: bookwyrm/templates/snippets/pagination.html:15 msgid "Previous" @@ -6707,7 +7262,7 @@ msgstr "Valorar" #: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 #, python-format msgid "Finish \"%(book_title)s\"" -msgstr "Rematei \"%(book_title)s\"" +msgstr "Finalizar \"%(book_title)s\"" #: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" @@ -6721,7 +7276,7 @@ msgstr "Actualización do progreso" #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 #, python-format msgid "Start \"%(book_title)s\"" -msgstr "Comecei a ler \"%(book_title)s\"" +msgstr "Comezar a ler \"%(book_title)s\"" #: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 #, python-format @@ -6773,7 +7328,7 @@ msgstr "As ligazóns deste dominio van ser eliminadas ata que se revise a denunc #: bookwyrm/templates/snippets/report_modal.html:41 msgid "More info about this report:" -msgstr "Máis info acerca desta denuncia:" +msgstr "Máis info sobre esta denuncia:" #: bookwyrm/templates/snippets/shelf_selector.html:7 msgid "Move book" @@ -6811,6 +7366,10 @@ msgstr "Deixar de ler" msgid "Finish reading" msgstr "Rematar a lectura" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Mostrar valoración" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Mostrar estado" @@ -6837,7 +7396,7 @@ msgstr " - %(endpercent)s%%" #: bookwyrm/templates/snippets/status/content_status.html:116 msgid "Open image in new window" -msgstr "Abrir imaxe en nova ventá" +msgstr "Abrir imaxe en nova xanela" #: bookwyrm/templates/snippets/status/content_status.html:137 msgid "Hide status" @@ -6911,7 +7470,7 @@ msgstr "recensionou %(book)s" #: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 #, python-format msgid "stopped reading %(book)s by %(author_name)s" -msgstr "deixei de ler %(book)s de %(author_name)s" +msgstr "deixou de ler %(book)s de %(author_name)s" #: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 #, python-format @@ -7065,7 +7624,7 @@ msgstr "Crear lista" #: bookwyrm/templates/user/user_preview.html:22 #, python-format msgid "Joined %(date)s" -msgstr "Desde hai %(date)s" +msgstr "Creada %(date)s" #: bookwyrm/templates/user/relationships/followers.html:36 #, python-format @@ -7116,11 +7675,11 @@ msgstr "Mostrar Opcións RSS" #: bookwyrm/templates/user/user.html:88 msgid "RSS feed" -msgstr "Fonte RSS" +msgstr "Canle RSS" #: bookwyrm/templates/user/user.html:104 msgid "Complete feed" -msgstr "Fonte completa" +msgstr "Canle completa" #: bookwyrm/templates/user/user.html:109 msgid "Reviews only" @@ -7166,8 +7725,9 @@ msgid "View profile and more" msgstr "Ver perfil e máis" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "O ficheiro supera o tamaño máximo: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "O ficheiro excede o tamaño máximo: %(max_size)sMB" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7186,25 +7746,9 @@ msgstr[1] "%(num)d libros - por %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Actualizacións de estados desde {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Recensións de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citas de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Comentarios sobre {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "unha nova conta de usuaria" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/he_IL/LC_MESSAGES/django.mo b/locale/he_IL/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..35555039cf Binary files /dev/null and b/locale/he_IL/LC_MESSAGES/django.mo differ diff --git a/locale/he_IL/LC_MESSAGES/django.po b/locale/he_IL/LC_MESSAGES/django.po new file mode 100644 index 0000000000..959b2f8ec9 --- /dev/null +++ b/locale/he_IL/LC_MESSAGES/django.po @@ -0,0 +1,7831 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Hebrew\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: he\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "יום אחד" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "שבוע אחד" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "חודש אחד" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "ללא תפוגה" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "בלתי מוגבלת" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "סיסמה שגויה" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "הסיסמה אינה תואמת" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "ססמה שגויה" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "זמן סיום הקריאה אינו יכול להיות מוקדם מזמן ההתחלה." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "זמן הפסקת הקריאה אינו יכול להיות מוקדם מזמן ההתחלה." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "תאריך הפסקת קריאה אינו יכול להיות בעתיד." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "תאריך סיום קריאה אינו יכול להיות בעתיד." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "שם משתמש-ת או ססמה אינם נכונים" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "קיים כבר משתמש בעל שם משתמש זה" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "משתמש עם כתובת מייל זו כבר קיים." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "קוד שגוי" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "הדומיין חסום. אם לדעתך מדובר בטעות, יש לפנות לאדמין." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "קישור עם סוג קובץ זה כבר התווסף עבור הספר. אם לא ניתן לראות את הקישור, הדומיין עדיין בהמתנה." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "סידור הרשימה" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "כותרת ספר" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "דירוג" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "מיון לפי" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "סדר עולה" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "סדר יורד" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "עיקרי" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "הצלחה" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "קישור" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "אזהרה" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "סכנה" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "דוח הנוצר אוטומטית" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "ממתין" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "מחיקה עצמית" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "השבתה עצמית" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "השהיית מגשר" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "מחיקת מגשר" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "חסימת דומיין" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "אודיובוק" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "ספר אלקטרוני" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "נובלה גרפית" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "כריכה קשה" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "כריכה רכה" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "הערה" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "ביקורת" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "עקוב" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "חסום" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "בפדרציה" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "חסום" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s הוא לא remote_id תקין" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s אינו שם משתמש תקין" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "שם משתמש-ת" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "קיים כבר משתמש בעל שם משתמש זה." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "ציבורי" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "לא רשום" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "עוקבות" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "פרטי" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "פעיל" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "השלם" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "עצר" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "פעולת הייבוא נעצרה" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "שגיאה בטעינת הספר" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "לא נמצאה התאמה עבור הספר" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "נכשל" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "חינם" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "ניתן לרכישה" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "ניתן להשאלה" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "מאושר" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "סימן.ה את הדיווח כפתור" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "פתח.ה מחדש את הדיווח" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "שלח.ה הודעה למדווח.ת" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "נשלחה הודעה למשתמש המדווח" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "משתמש מושעה" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "משתמש שהשעייתו בוטלה" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "חשבון משתמש נמחק" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "דומיין חסום" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "דומיין מאושר" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "פריט שנמחק" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "ביקורות" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "הערות" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "ציטוטים" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "כל השאר" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "ציר זמן הבית" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "ראשי" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "ציר זמן הספרים" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "ספרים" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "אנגלית" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (קטלנית)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (גרמנית)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (אספרנטו)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (ספרדית)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (באסקית)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (גליציאנית)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (איטלקית)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (קוריאנית)" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (פינית)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (צרפתית)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (ליטאית)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Nederlands (הולנדית)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (נורווגית)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (פולנית)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (פוטוגזית ברזילאית)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (פורטוגזית אירופאית)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (רומנית)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (שוודית)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "Українська (אוקראינית)" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (סינית מפושטת)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (סינית מסורתית)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "הו לא!" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "ההרשאה נדחתה" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "לא נמצא" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "הדף אותו חיפשתן אינו קיים!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "הקובץ גדול מדי" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "הקובץ שאתם מעלים גדול מדי." + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "אופס!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "שגיאת שרת" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "משהו השתבש! סליחה על זה." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "אודות" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "ברוכות הבאות אל %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s הוא חלק מ-BookWyrm, רשת של קהילות עצמאיות המנוהלות ע״י קוראים ועבורם. למרות שניתן לתקשר בקלות עם משתמשים בכל רחבי רשת BookWyrm, קהילה זו היא ייחודית." + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)s הוא הספר האהוב ביותר של %(site_name)s בדירוג ממוצע של %(rating)s מתוך 5." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "יותר משתמשים ב-%(site_name)s רוצים לקרוא את %(title)s מאשר כל ספר אחר." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "%(title)s הוא הספר אודותיו הביקורות ב-%(site_name)s הן השנויות ביותר במחלוקת." + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "עקבו אחר הקריאה שלכם, דברו על ספרים, כתבו ביקורות וגלו מה הספרים הבאים שתקראו. Bookwyrm היא תוכנה במימדים של בני אדם, שעוצבה כדי להישאר קטנה ואישית; היא תמיד תישאר ללא פרסומות, אנטי-תאגידית וקהילתית. אם יד לכם בקשות לפיצ׳רים, דיווחי תקלות או חלומות, פנו אלינו כדי שנשמע את מה שיש לכם לומר." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "הכירי את האדמינים שלך" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "המפקחים והמנהלים של %(site_name)s דואגים שהאתר יהיה פעיל ומתפקד, אוכפים את כללי ההתנהגות ומגיבים כשמשתמשים מדווחים על ספאם או התנהגות לא ראויה." + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "מגשרת" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "אדמין" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "שליחת הודעה ישירה" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "כללי ההתנהגות" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "משתמשים פעילים:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "סטטוסים שפורסמו:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "גרסת תוכנה:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "אודות %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "מדיניות הפרטיות" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s בספרים" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)sבספרים" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "שנת הקריאה של %(display_name)s" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "שתפו עמוד זה" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "העתקת הכתובת" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "הועתק!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "סטטוס שיתוף: פומבי עם מפתח" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "כולם יכולים לראות את דף זה עם הכתובת המלאה." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "הפיכת דף לפרטי" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "סטטוס שיתוף: פרטי" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "הדף פרטי, אף אחד לא יכול לראות אותו פרט לך." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "שנו עמוד זה לציבורי" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "כשהופכים דף לפרטי, המפתח הישן לא יאפשר גישה לדף יותר. אם הדף ייהפך לפומבי שוב, מפתח חדש יווצר." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "לצערנו %(display_name)s לא סיים אף ספר ב-%(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "ב-%(year)s %(display_name)s קרא ספר %(books_total)s book
    ובו %(pages_total)s עמודים!" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "ב-%(year)s %(display_name)s קרא %(books_total)s book
    ספרים ובהם %(pages_total)s עמודים!" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "נהדר!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "זה %(pages)s עמודים בממוצע לספר." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "(לא נמצא מידע אודות עמודים עבור %(no_page_number)s ספרים)" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "הקריאה הקצרה ביותר שלהם בשנה הזו…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "מאת" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s עמודים" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "…והארוך ביותר" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "%(display_name)s הציב-ה יעד לקרוא ספר %(goal)s ב-%(year)s,
    והשיג-ה %(goal_percent)s%% מתוך יעד הזה" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "%(display_name)s הציב-ה יעד לקרוא %(goal)s ספרים ב-%(year)s,
    והשיג-ה %(goal_percent)s%% מתוך יעד הזה" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "כל הכבוד!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "%(display_name)s כתב.ה %(ratings_total)s ביקורות,
    הדירוג הממוצע שלו.ה הוא %(rating_average)s" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "הביקורת בדירוג הכי גבוה שלו.ה" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "הדירוג שלהם: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "כל הספרים ש-%(display_name)s קרא.ה ב-%(year)s" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "ערוך מחבר.ת" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "פרטי מחבר.ת" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "כינויים:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "נולד.ה:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "מת.ה:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "קישורים חיצוניים" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "ויקיפדיה" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "אתר" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "צפייה ברשומת ISNI" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "לצפייה ב-ISFDB" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "טען.י מידע" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "צפייה ב-OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "צפייה ב-Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "צפייה ב-LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "צפייה ב-Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "ספרים מאת %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "הוסיפו מחבר-ת:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "נוסף ב:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "עודכן ב:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "נערך לאחרונה על-ידי:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "מטא-דאטה" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "שם:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "יש להפריד ערכים מרובים באמצעות פסיקים" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "אודות:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "קישור לוויקיפדיה:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "ויקינתונים:" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "אתר:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "תאריך לידה:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "תאריך פטירה:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "מזהי מחבר.ת:" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "מפתח Openlibrary:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "מזהה Inventaire:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "מפתח Librarything:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "מפתח Goodreads:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "ISFDB:" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "שמירה" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "ביטול" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "טעינת מידע תוביל לחיבור ל-%(source_name)s ותאתר כל פריט מטא-דאטה שאינו מופיע כאן. מטא-דאטה קיים לא ישוכתב." + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "אישור" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "לא ניתן להתחבר למקור מרוחק." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "ערוך ספר" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "לחץ.י להוספת כריכה" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "טעינת כריכה נכשלה" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "לחץ.י להגדלה" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s ביקורות)" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "(%(review_count)s ביקורות)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "הוספת תיאור" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "תיאור:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "מהדורה %(count)s" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "הנחת את המהדורה על מדף:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "קיימת מהדורה אחרת של הספר במדף %(shelf_name)s שלך." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "פעילות הקריאה שלך" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "הוספת תאריכי קריאה" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "אין פעילות קריאה עבור ספר זה." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "הביקורות שלך" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "התגובות שלך" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "הציטוטים שלך" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "נושאים" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "מקומות" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "רשימות" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "הוספה לרשימה" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "הוספה" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "מסת\"ב ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "העתק ISBN" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBN הועתק!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "מספר OCLC:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "Audible ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "ISFDB ID:" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "הוספת כריכה" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "העלאת כריכה:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "טעינת כריכה מכתובת:" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "תצוגה מקדימה של כריכת הספר" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "סגירה" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "עריכת %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "הוספת ספר" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "שמירת ספר נכשלה, ראו את השגיאות מטה למידע נוסף." + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "אישור מידע אודות הספר" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "האם %(name)s הוא אחד מהמחברים הבאים?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "מחבר/ת %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "מחבר/ת %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "מצאו מידע נוסף ב-isni" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "זהו מחבר/ת חדש/ה" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "יוצר מחבר/ת חדש/ה: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "האם זוהי מהדורה של ספר קיים?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "זו עבודה חדשה" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "חזרה" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "כותרת:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "מיין כותרת:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "כותרת משנה:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "סדרה:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "מספר סדרה:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "שפות:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "נושאים:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "הוספת נושא" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "הסרת נושא" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "הוסיפו נושא" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "פרסום" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "הוצאה:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "פורסם לראשונה בתאריך:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "פורסם בתאריך:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "מחברים-ות" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "הסר %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "עמוד המחבר-ת של %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "הוסיפו מחברים-ות:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "הוסיפו מחבר-ת" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "פלוני-ת אלמוני-ת" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "הוספת מחבר/ת נוסף/ת" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "כריכה" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "מאפיינים פיזיים" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "פורמט:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "פרטי פורמט:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "עמודים:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "מזהי ספר" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "מזהה Openlibrary:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "מהדורות של %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "מהדורות של %(work_title)s" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "לא מוצא.ת את המהדורה שחיפשת?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "הוספת מהדורה נוספת" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "כלשהו" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "שפה:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "חיפוש מהדורות" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "הוספת קישור לקובץ" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "קישורים מדומיינים לא מוכרים צריכים לעבור אישור מפעיל לפני הוספתם." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "כתובת אינטרנט:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "סוג קובץ:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "זמינות:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "עריכת קישור" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "קישורים עבור ״%(title)s״" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "כתובת אינטרנט" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "נוסף על־ידי" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "סוג קובץ" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "דומיין" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "מצב" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "פעולות" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "משתמש לא ידוע" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "דווח.י כספאם" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "אין קישורים זמינים עבור ספר זה." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "הוספת קישור לקובץ" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "קישורי קובץ" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "השיגו עותק" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "אין קישורים זמינים" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "עוזב את BookWyrm" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "הקישור הזה לוקח אתכם ל-%(link_url)s
    . האם לשם תרצו להגיע?" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "המשך" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s עמודים" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s עמודים" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "פורסם ב-%(date)s ע״י %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "פורסם על ידי %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "פורסם בתאריך: %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "דירג/ה" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "סדרה מאת" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "ספר לא ממוין" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "טעינת מידע תוביל לחיבור ל-%(source_name)s ותאתר כל פריט מטא-דאטה שאינו מופיע כאן. מטא-דאטה קיים לא ישוכתב." + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "עריכת סטטוס" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "אימות דוא״ל" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "אישור כתובת הדואר האלקטרוני שלך" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "קוד אימות נשלח לכתובת הדוא״ל איתה נרשמת." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "מצטערים, לא הצלחנו למצוא את הקוד הזה." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "קוד אימות:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "הגשה" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "לא מצליח/ה למצוא את הקוד שלך?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "שלח מחדש לינק אישור" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "כתובת דוא״ל:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "שלח מחדש קישור" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "קהילה" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "משתמשים מקומיים" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "קהילה פדרטיבית" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "הפוך/י את הפרופיל שלך לגלוי עבור משתמשי BookWyrm אחרים." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "התעלם מהודעה" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "סדר לפי" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "פעיל/ה לאחרונה" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "הצעות" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "חשבון נעול" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "עוקבים שנעקבים על ידיך" +msgstr[1] "עוקבים שאת/ה עוקב/ת אחריהם" +msgstr[2] "עוקבים שאת/ה עוקב/ת אחריהם" +msgstr[3] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "ספר על המדפים שלך" +msgstr[1] "" +msgstr[2] "ספרים על המדפים שלך" +msgstr[3] "ספרים על המדפים שלך" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "פוסטים" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "פעיל.ה לאחרונה" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "סוג משתמש" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "משתמשי BookWyrm" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "כל המשתמשים המוכרים" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "גלו עוד" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "ראו מה חדש בקהילה המקומית של %(site_name)s" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "צפייה בסטטוס" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "עוד צעד אחד לפני ההצטרפות ל-%(site_name)s! אנא אמתו את כתובת הדוא״ל ע״י לחיצה על הקישור מטה:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "אימות דוא״ל" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "או הקישו את הקוד %(confirmation_code)s בעת ההתחברות." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "אנא אשרו את כתובת המייל" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "או הזינו את הקוד %(confirmation_code)s בעת ההתחברות." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "היי לכם" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "העדפת דוא״ל" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "הוזמנת להצטרף ל-%(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "הצטרף/י עכשיו" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "הוזמנת להצטרף ל-%(site_name)s! לחץ/י על הקישור מטה כדי ליצור חשבון." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "למדו עוד אודות %(site_name)s:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "%(reporter)s סימן/ה את הדומיין של קישור זה כדורש בקרה." + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "@%(reporter)s סימנה את ההתנהגות של @%(reportee)s כדורשת בקרה." + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "הצג דוח" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "דוח חדש עבור %(site_name)s" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "ביקשת לאפס את סיסמתך ל-%(site_name)s. יש ללחוץ על הלינק מטה כדי לקבוע סיסמה חדשה ולהתחבר לחשבונך." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "איפוס סיסמה" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "אם לא ביקשת לאפס את הסיסמה שלך, ניתן להתעלם מדוא\"ל זה." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "אפס/י את סיסמת ה-%(site_name)s שלך" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "זהו דוא״ל בדיקה." + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "דוא״ל בדיקה" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "דף הבית של %(site_name)s" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "יצירת קשר עם מנהל האתר" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "הצטרפות ל-BookWyrm" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "הודעות ישירות עם %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "הודעות ישירות" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "כל ההודעות" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "אין הודעות להצגה כרגע." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "אין פעילויות כרגע! נסו לעקוב אחרי משתמש כדי להתחיל" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "לחלופין, ניתן להפעיל סוגי סטטוס נוספים" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "יעד הקריאה של %(year)s" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "ניתן לקבוע או לשנות את יעד הקריאה בכל זמן מ->עמוד הפרופיל שלך" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "עדכונים" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "הספרים שלך" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "אין כאן ספרים כרגע! נסו לחפש ספר כדי להתחיל" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "האם יש לך מידע אודות ספרים משירות אחר כגון GoodReads?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "יבאו את היסטוריית הקריאה שלכם" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "א-נשים לעקוב אחריהן-ם" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "אל תציג המלצות משתמשות-ים" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "סוף השנה הוא הזמן הטוב ביותר לסכם את כל הספרים שקראתם ב-12 החודשים האחרונים. כמה עמודים קראתם? לאיזה ספר נתתם את הציון הגבוה ביותר? אספנו את הנתונים האלה ועוד!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "גלו את הסטטיסטיקות שלכם ל-%(year)s!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "האם קראת את %(book_title)s?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "הוסף/י לספרים שלך" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "לקריאה" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "קורא/ת עכשיו" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "נקרא" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "הפסיק.ה לקרוא" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "מה את/ה קורא/ת?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "חפש/י ספר" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "לא נמצאו ספרים עבור ״%(query)s״" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "ניתן להוסיף ספרים כשתתחיל/י להשתמש ב-%(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "חיפוש" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "ספרים מוצעים" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "תוצאות החיפוש" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "פופולרי ב-%(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "לא נמצאו ספרים" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "שמור והמשך" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "ברוכים הבאים" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "הנה כמה צעדים ראשונים כדי לעזור לך להתחיל." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "צרו את הפרופיל שלכם" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "הוספת ספרים" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "מצאו חברים" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "דלגו על השלב הזה" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "סיום" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "שם תצוגה:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "תקציר:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "קצת אודות עצמך" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "אווטאר:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "אשר.י עוקבים ידנית:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "הצג את החשבון הזה במשתמשים המומלצים:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "ניתן לעקוב אחרי משתמשים בשרתי BookWyrm אחרים ובשירותים פדרטיבים כגון מסטודון." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "חיפוש עבור משתמשים" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "לא נמצאו משתמשים עבור \"%(query)s\"" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "יצירת קבוצה" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "מנוהל על-ידי %(username)s" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "האם למחוק את הקבוצה הזאת?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "פעולה זו אינה הפיכה" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "מחיקה" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "עריכת קבוצה" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "שם הקבוצה:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "תיאור הקבוצה:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "מחיקת קבוצה" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "חברי הקבוצה יכולים ליצור רשימות המורכבות על-ידי הקבוצה." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "יצירת רשימה" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "בקבוצה זו אין רשימות" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "עריכת קבוצה" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "חפש/י כדי להוסיף משתמש" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "עזוב/י את הקבוצה" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "עוקב/ת אחריך" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "הוסף/י חברים חדשים!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "%(mutuals)s עוקבים שנעקבים על ידיך" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "%(shared_books)s ספרים על המדפים שלך" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "אין חברים פוטנציאלים עבור ״%(user_query)s״" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "מנהל/ת" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "לא נמצאו קבוצות." + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "זהו עמוד הבית עבור ספר. בואו נראה מה אפשר לעשות כאן!" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "עמוד ספר" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "סיום הסיור" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "הבא" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "כאן תוכלו לקבוע סטטוס קביעה לספר זה. ניתן ללחוץ על הכפתור למעבר לשלב הבא או להשתמש בתפריט הגלילה כדי לבחור את סטטוס הקריאה הרצוי." + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "סטטוס קריאה" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "ניתן להוסיף תאריך קריאה ידנית כאן. בניגוד לשינוי סטטוס הקריאה בשיטה הקודמת, הוספה ידנית של תאריכים לא תוסיף אותם אוטומטית למדפי נקרא או בקריאה." + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "יש ספר שאתם אוהבים לקרוא מחדש כל שנה? יש פיתרון - ניתן להוסיף תאריכי קריאה מרובים עבור אותו ספר😀" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "לספר אחד יכולות להיות מספר מהדורות בפורמטים שונים או בשפות שונות. ניתן לבחור את המהדורה שתרצו להשתמש בה." + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "מהדורות אחרות" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "כאן אפשר לפרסם ביקורת, תגובה או ציטוט." + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "שתפו את המחשבות שלכם" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "אם קראתם את הספר אתם יכולים לפרסם ביקורת הכוללת דירוג כוכבים אופציונלי" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "פרסם/י ביקורת" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "אפשר לשתף את מחשבותיכם על הספר באופן כללי בתגובה פשוטה" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "פרסם/י תגובה" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "בדיוק קראת פרוזה מושלמת? הוסף/י ציטוט כדי שהעולם יידע!" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "שתף/י ציטוט" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "אם הביקורת או התגובה שלך יכולה להרוס את הספר למי שעוד לא קרא אותו, אפשר להסתיר את הפוסט מאחורי אזהרת ספוילר" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "אזהרות ספוילר" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "הגדרות הפרטיות של הפוסט" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "ספרים דיגיטליים מסוימים אפשר להוריד בחינם ממקורות חיצוניים. ניתן יהיה לראות אותם כאן." + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "הורדת קישורים" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "המשיכו בסיור על ידי בחירה בהספרים שלך מהתפריט הנפתח." + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "אוקיי" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "ברוכים הבאים לעמוד הקבוצה שלכם! כאן אפשר להוסיף או להסיר משתמשים, ליצור רשימות שמשתמשים אוצרים ולערוך את פרטי הקבוצה." + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "הקבוצה שלך" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "מצאו משתמש" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "חברי הקבוצה שלכם יופיע כאן. בעל/ת הקבוצה מסומן/ת בסמל כוכב." + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "חברי הקבוצה" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "בנוסף ליצירת רשימות מעמוד הרשימות, אפשר ליצור רשימה קבוצתית כאן בעמוד הבית של הקבוצה. כל חבר.ה בקבוצה יכול.ה ליצור רשימה קבוצתית." + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "רשימות קבוצתיות" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "מזל טוב, סיימתם את הסיור! עכשיו אתם מכירים את הבסיס, אבל יש עוד הרבה מה לחקור. קריאה מהנה!" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "סיום הסיור" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "ברוכים הבאים ל-Bookwyrm!

    תרצו לנסות את הסיור המודרך כדי להתחיל?" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "סיור מודרך" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "לא תודה" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "כן, בבקשה!" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "אם תשנו את דעתכם, לחצו על קישור הסיור המודרך כדי להתחיל בסיור" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "חפשו ספרים, משתמשים או רשימות באמצעות תיבת חיפוש זו." + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "תיבת חיפוש" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "חפשו רשומות ספרים על ידי סריקת ברקוד ISBN באמצעות המצלמה שלכם - נהדר כשאתם בחנות ספרים או ספריה!" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "קורא ברקודים" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "סרגל ניווט" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "כאן יופיעו ספרים ממדפי סטטוס הקריאה שלכם." + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "עדכונים מאנשים שאתם עוקבים אחריהם יופיע בציר הבית.

    לשונית הספרים מראה פעילות מצד כל משתמש הקשורה לספרים שלכם." + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "צירי זמן" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "סמל הפעמון יואר כשיש לך התראה חדשה. כשזה קורא, לחץ/י עליו כדי לגלות איזה דבר מרגש קרה!" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "התראות" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "נסו לבחור פרופיל מהתפריט הנפתח כדי להמשיך בסיור." + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "תפריט פרופיל והגדרות" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "זהו עמוד הרשימות בו ניתן לגלות רשימות ספרים שנוצרו על ידי כל משתמש שהוא. רשימה היא אוסף ספרים, בדומה למדף." + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "מדפים נועדו כדי לסדר ספרים עבור עצמך, בעוד שרשימות נועד לרוב לשיתוף עם אחרים." + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "בואו נראה איך ליצור רשימה חדשה." + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "לחצו על צור רשימה ואז על הבא כדי להמשיך בסיור" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "יצירת רשימה חדשה" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "חובה לתת לרשימה שם, וניתן גם להוסיף תיאור כדי לעזור לאחרים להבין על מה הרשימה." + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "בחרו מי יכול לצפות ברשימה שלכם כאן. אפשרויות פרטיות של רשימות עובדות בדיוק כמו שראינו לגבי פרסום ביקורות ספרים. זוהי תבנית חוזרת ב-Bookwyrm." + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "הגדרות הפרטיות של הרשימה" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "תוכלו להחליט איך לאצור את הרשימה - על ידכם בלבד, על ידי כל אחד או על ידי קבוצה." + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "אוצרות רשימה" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "בשלב הבא בסיור נלמד על קבוצות!" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "הבא: קבוצות" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "קח אותי לשם" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "אם הספר שאתם מחפשים נמצא בקטלוג מרוחק כגון Open Library לחצו על יבא ספר." + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "מתבצע חיפוש" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "אם הספר אותו אתם מחפשים כבר מופיע בשרת Bookwyrm זה, ניתן ללחוץ על שם הכותר כדי לגשת לדף הספר." + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "אם הספר אותו אתם מחפשים לא מופיע, נסו לטעון רשומות נוספות ממקורות אחרים כמו Open Library או Inventaire." + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "טעינת רשומות נוספות" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "אם הספר שלכם לא מופיע בתוצאות, נסו לשנות את מילות החיפוש." + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "חפש שוב" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "אם עדיין אינכם מוצאים את הספר שלכם, ניתן להוסיף רשומה באופן ידני." + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "הוסף רשומה באופן ידני" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "יבאו ספר, הוסיפו ספר ידנית או צפו בספר קיים כדי להמשיך בסיור." + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "המשך בסיור" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "בעמוד זה מופיעים הספרים שלך מסודרים לפי מדפים." + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "הספרים שלך" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "לקרוא, בקריאה, נקראו וקריאה הופסקה הם מדפי ברירת מחדל. כשמשנים את סטטוס הקריאה של הספר הוא יועבר למדף המתאים באופן אוטומטי. ספר יכול להיות במדף ברירת מחדל אחד בלבד בכל רגע נתון." + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "מדפי סטטוס קריאה" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "מוסיף מדפים בהתאמה אישית." + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "אם יש לך קובץ ייצוא משירות אחר כמו Goodreads או LibraryThing, ניתן לייבא אותו כאן." + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "ייבוא משירות אחר" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "עכשיו אחרי שהתנסנו עם מדפי ספרים בואו נתקדם לנושא קשור: רשימות ספרים!" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "לחצו על קישוא הרשימות כדי להמשיך בסיור." + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "ניתן ליצור קבוצה או להצטרף לאחת עם משתמשים אחרים. קבוצות יכולות לשתף רשימות ספרים שהורכבו על ידי הקבוצה ובהמשך יוכלו לעשות דברים נוספים." + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "קבוצות" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "בואו ניצור קבוצה חדשה!" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "לחצו על צור רשימה ואז על הבא כדי להמשיך בסיור" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "תן.י לקבוצה שלך שם ותאר.י על מה היא. ניתן ליצור קבוצות משתמשים לכל מטרה - קבוצת קריאה, כמה חברים או כל דבר אחר!" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "יצירת קבוצה" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "לקבוצות יש הגדרות פרטיות ממש כמו לפוסטים ולרשימות, פרט לכך שהגדרת הפרטיות של קבוצה לא יכולה להיות עוקבים." + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "נראות הקבוצה" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "כשאתם מרוצים מאיך שהכל מוגדר, לחצו על כפתור שמור כדי ליצור את הקבוצה החדשה שלכם." + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "צרו ושמרו קבוצה כדי להמשיך בסיור." + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "שמירת קבוצה" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "זה פרופיל המשתמש שלך. כל הפעילויות האחרונות שלך יוצגו פה. משתמשי Bookwyrm אחרים יכולים גם הם לראות חלקים מהעמוד - מה שהם יכולים לראות תלוי בהגדרות הפרטיות שלך." + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "פרופיל משתמש" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "הטאב הזה מציג את כל מה שקראת לקראת היעד השנתי או מאפשר לחלופין ליצור יעד כזה. לא חובה לקבוע יעד אם זה לא הקטע שלך!" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "יעד קריאה" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "כאן תוכל.י לראות את הקבוצות שלך או ליצור קבוצה חדשה. קבוצה מאגדת משתמשים ב-Bookwyrm ומאפשר להם לאצור רשימות יחד." + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "כאן ניתן לראות את הרשימות שלכם או ליצור אחת חדשה. רשימה היא אוסף ספרים שיש להם משהו במשותף." + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "כרטיסיית הספרים מציגה את מדפי הספרים שלכם. נלמד על כך עוד בהמשך הסיור." + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "מצא.י ספר" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "אין פעילויות עבור ההאשטאג הזה עדיין!" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "קובץ CSV לא תקין" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "בממוצע, פעולות ייבוא אחרונות לקחו %(hours)s שעות." + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "בממוצע, ייבואים אחרונים לקחו %(minutes)s דקות." + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "מקור המידע:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "Goodreads (CSV)" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "Storygraph (CSV)" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "LibraryThing (TSV)" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "OpenLibrary (CSV)" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "Calibre (CSV)" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "ניתן להוריד את מידע ה-Goodreads שלך מ-עמוד הייבוא/ייצוא של חשבון ה-Goodreads" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "קובץ נתונים:" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "כלול ביקורות" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "ייבוא" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "הגעת למכסת הייבוא." + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "האפשרות לייבא חסומה זמנית, תודה על סבלנותך." + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "ייבואים אחרונים" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "תאריך יצירה" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "עודכן לאחרונה" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "פריטים" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "אין ייבואים אחרונים" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "סטטוס הייבוא" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "סטטוס ניסיון מחדש" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "ייבואים" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "ייבוא החל:" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "בתהליך" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "רענן" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "עצור ייבוא" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "%(display_counter)s פריטים דורשים אישור ידני." + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "צפייה בפריטים שנכשלו ופתרון בעיות" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "שורה" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "כותר" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "מסת\"ב (ISBN)" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "מפתח Openlibrary" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "מחבר/ת" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "מדף" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "ספר" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "אין פריטים הממתינים לסקירה" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "צפו בביקורת מיובאת" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "מיובא" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "נדרשת ביקורת ידנית" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "נסה שנית" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "הייבוא הזה הוא בפורמט ישן שלא נתמך עוד. אם תרצו לתקן פריטים חסרים מייבוא זה, לחצו על הלחצן מטה כדי לעדכן את פורמט הייבוא." + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "עדכן ייבוא" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "קובץ ייבוא לא תקין" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "שלב 1:" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "שלב 2:" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "פרופיל משתמש.ת" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "דורס את:" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "הגדרות ברירת המחדל של פרטיות הפוסטים" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "יעדי קריאה" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "מדפים" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "היסטוריית קריאה" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "רשימות ספרים" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "רשימות שמורות" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "פתרון בעיות ייבוא" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "אישור הצעה יוסיף את הספר המוצע אוטומטית למדפים שלך ויקשר אליו את תאריכי הקריאה, הביקורות והדירוגים שלך." + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "אשר/י" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "דחה/י" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "פריטים שנכשלו" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "פתרון תקלות" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "ניסיון מחודש לייבא יכול לתקן פריטים חסרים במקרים כגון:" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "הספר נוסף לשרת זה מאז הייבוא" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "מאז ייבוא זה, BookWyrm עודכן ותוקנה תקלה" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "סך הכל" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "סטטוסים" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "צרו חשבון" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "מצטערים! קוד ההזמנה אינו זמין עוד." + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "ספרים אחרונים" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "מבוזר" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "ידידותי" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "אנטי-תאגידי" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "הצטרפו ל-%(name)s" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "בקשו הזמנה" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "ההרשמה ל-%(name)s סגורה" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "תודה! בקשתך התקבלה." + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "החשבון שלך" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "התחברות" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "התחברו" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "כתובת הדוא״ל אושרה בהצלחה!" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "שם משתמש/ת:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "סיסמה:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "שכחת את הסיסמה?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "אודות אתר זה" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "אשר/י סיסמה:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "קישור איפוס סיסמה יישלח ל-%(email)s אם יש חשבון המשתמש בכתובת דוא\"ל זו." + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "קישור לאיפוס הסיסמה יישלח לכתובת הדוא\"ל שלכם" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "איפוס סיסמה" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "הפעלה מחדש של החשבון" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "הפעלה מחדש של החשבון" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "חיפוש ב-%(site_name)s" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "סרוק/י ברקוד" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "תפריט ניווט ראשי" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "סיסמה" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "הצג/הסתר סיסמה" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "הצטרפו" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "סטטוס פורסם בהצלחה" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "שגיאה בפרסום סטטוס" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "הוסהוסף את %(title)s לרשימה זו" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "הצע" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "בטל שמירה" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "נוצר על ידי %(username)s ומנוהל על ידי <%(groupname)s" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "נוצר ונאצר על ידי %(username)s" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "נוצר על ידי %(username)s" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "אצרו" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "ספרים ממתינים" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "הכל מוכן!" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "הוצע על ידי" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "מחק" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "למחוק רשימה זו?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "ערוך רשימה" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "%(list_name)s, רשימה מאת %(owner)s" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "נמצא ב-%(site_name)s" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "הרשימה ריקה כרגע" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "אוצרות רשימה:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "סגור" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "רק אתם יכולים להוסיף ולהסיר ספרים מרשימה זו" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "כל אחד יכול.ה להציע ספרים, בכפוף לאישורכם" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "פתוח" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "כל אחד יכול להוסיף ספרים לרשימה זו" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "קבוצה" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "חברי הקבוצה יכולים להוסיף ולהסיר מרשימה זו" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "בחר קבוצה" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "בחר קבוצה" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "אין לכם עדיין קבוצות!" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "צור קבוצה" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "הסרת רשימה" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "ספר זה כבר נמצא ברשימה." + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "הצעתם ספר לרשימה זו בהצלחה!" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "הוספתם ספר לרשימה זו בהצלחה!" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "הרשימה ריקה כרגע." + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "ערוך הערות" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "הוסף הערות" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "נוסף על ידי %(username)s" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "מיקום ברשימה" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "קבע" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "הסר" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "מיין רשימה" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "הוסף ספרים" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "הצע ספרים" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "ניקוי חיפוש" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "לא נמצאו ספרים המתאימים לשאילתת החיפוש \"%(query)s\"" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "הטמע רשימה זו באתר" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "העתק קוד הטמעה" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "%(list_name)s, רשימה מאת %(owner)s ב-%(site_name)s" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "נשמר" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "לא נמצאו רשימות." + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "הרשימות שלכם" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "כל הרשימות" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "רשימות שמורות" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "התנתק" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)sקיבל.ה את הזמנתכם להצטרף לקבוצה \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s ו-%(second_user)s קיבלו את הזמנתכם להצטרף לקבוצה \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "%(related_user)s ו-%(other_user_display_count)s אחרים קיבלו את הזמנתכם להצטרף לקבוצה \"%(group_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "%(related_user)s הוסיף.ה %(book_title)s לרשימה שלכם \"\"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "אזהרת תוכן" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "מחיקת התראות" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "אזכורים" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "אתם מעודכנים לגמרי!" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "ודא.י ששם המשתמש נכון לפני שתנסה.י שוב." + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "חסמת את %(account)s" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "עקוב אחרי %(username)s בפדיברס" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "עקבו!" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "עקבו בפדיברס" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "קישור זה נפתח בחלון קופץ" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "התחבר ל-%(sitename)s" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "אוי לא..." + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "בואו נתחבר קודם..." + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "עקוב אחרי @%(username)s" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "את.ה עוקב.ת כעת אחרי %(display_name)s" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "משתמשים חסומים" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "אין משתמשים חסומים כרגע." + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "החלפת סיסמה" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "הסיסמה שונתה בהצלחה" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "סיסמה נוכחית:" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "סיסמא חדשה:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "מחק חשבון" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "להשבית את החשבון" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "חשבונך יוסתר. ניתן יהיה להיכנס מחדש בכל עת ולהפעיל מחדש את החשבון." + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "להשבית את החשבון" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "מחק חשבון לצמיתות" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "לא ניתן לבטל את מחיקת החשבון. שם המשתמש לא יהיה זמין להרשמה בעתיד." + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "השבת אימות דו שלבי" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "השבת אימות דו שלבי" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "השבתת האימות הדו שלבי תאפשר לכל אחד עם שם המשתמש והסיסמה שלכם להתחבר לחשבונכם." + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "כבה אימות דו-שלבי" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "ערוך פרופיל" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "פרופיל" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "תצוגה" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "פרטיות" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "הצג משתמשים מוצעים" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "הצג חשבון זה במשתמשים מוצעים" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "הורד קובץ" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "קשרים" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "אימות דו-שלבי" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "הגדרות אימות דו שלבי עודכנו בהצלחה" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "רשמו או עשו \"העתק-הדבק\" לקודים אלה במקום בטוח." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "יש להשתמש בהם לפי הסדר והם לא יוצגו שוב." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "אימות דו-שלבי פעיל בחשבונך." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "צור קודי גיבוי" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "סרקו את קוד ה-QR עם יישומון אימות והזינו את הקוד מטה כדי לאשר שהיישומון הוגדר היטב." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "ניתן להשתמש במקש ההגדרות" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "שם החשבון:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "קוד:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "הקישו קוד מהיישומון:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "הגדר אימות דו-שלבי" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "סיים את \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "התחל את \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "הפסק לקרוא את \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "רוצה לקרוא את \"%(book_title)s\"" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "למחוק את תאריכי הקריאה האלה?" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "התחיל.ה לקרוא" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "התקדמות" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "הסתיים" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "עצר" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "הצגת כל העדכונים" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "\n" +"סרוק ברקוד\n" +" " + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "מבקש מצלמה..." + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "אפשרו גישה למצלמה כדי לסרוק ברקוד של ספר." + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "לא ניתן היה להשתמש במצלמה" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "סורק..." + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "ישרו את הברקוד אל מול המצלמה." + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "מסת\"ב (ISBN) נסרק" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "מחפש ספר:" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "%(formatted_review_count)s ביקורות" +msgstr[3] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "שאילתת חיפוש" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "סוג חיפוש" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "תאריך התחלה" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "תאריך סיום" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "פעיל" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "לא פעיל" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "לא נמצאו הכרזות." + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "עריכת הכרזה" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "תוכן הכרזה" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "פרטים:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "תאריך אירוע:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "הגדרות תצוגה" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "צבע:" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "לוח זמנים:" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "ריצה אחרונה:" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "סך כל הריצות:" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "מופעל:" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "מחק לוח זמנים" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "הרץ עכשיו" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "תאריך הריצה האחרונה לא יעודכן" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "תזמן סריקה" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "כלל נוסף בהצלחה" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "הוסף כלל" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "התאמת מחרוזת" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "סמן משתמשים" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "סמן סטטוסים" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "הוסף כלל" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "כללים נוכחיים" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "הצג כללים" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "הסר כלל" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "מצב Celery" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "תורים" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "תיבת דואר נכנס" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "הופעל ייבוא" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "תמונות" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "משתמשים מוצעים" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "דוא\"ל" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "שונות" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "עדיפות נמוכה" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "עדיפות בינונית" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "עדיפות גבוהה" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "מזהה" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "שם משימה" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "זמן ריצה" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "עדיפות" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "אין משימות פעילות" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "עובדים" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "נקה תורים" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "שגיאות" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "לוח בקרה" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "סך הכל משתמשים" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "יצירות" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "פעילות בשרת" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "מרווח זמן:" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "ימים" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "שבועות" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "פעילות הרשמה" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "הרשמות" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "סטטוסים שפורסמו" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "הוסף דומיין" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "דומיין:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "רשימת חסימות דוא\"ל" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "הגדרות דוא\"ל" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "שגיאה בשליחת דוא\"ל ניסיון:" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "שלח דוא\"ל ניסיון ל-%(email)s" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "שלח דוא\"ל ניסיון" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "סטטוס:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "תוכנה:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "גרסה:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "פרטים" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "פעילות" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "משתמשים:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "הצג הכל" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "בטל חסימה" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "יבא רשימה שחורה" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "הצלחה!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "נחסמו בהצלחה:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "עודכן לאחרונה" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "תוכנה" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "הושלם" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "עצור ייבוא?" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "להשבית את האפשרות להתחיל ייבוא חדש" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "אפשרות זו נועדה רק למקרים קיצוניים בהם האפשרות ייבוא גורמת לשיבושים, אז יש לעצור את האפשרות זמנית בזמן שפותרחם את התקלה." + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "השבתת האפשרות לייבוא" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "הפעל יבוא" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "קבע הגבלת ייבוא ל-" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "ספרים כל" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "ימים." + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "קבע מגבלה" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "משתמש/ת" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "עודכן בתאריך" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "פריטים ממתינים" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "בקשות להזמנה" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "הזמנות" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "תאריך בקשה" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "תאריך אישור" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "תשובה" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "פעולה" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "אין בקשות" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "אושר" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "נשלח" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "מבוקש" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "שלח הזמנה" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "שלח הזמנה מחדש" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "התעלם" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "בטל התעלמות" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "תפוגה:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "מגבלת שימוש:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "פג" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "פעמים בשימוש" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "הוסף כתובת IP" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "‏כתובת IP:" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "כתובת" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "ניהול" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "מערכת" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "רישום" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "ערכות נושא" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "ההגדרות נשמרו" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "שאלה:" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "פעילות מודרציה" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "%(user)s פתח.ה דיווח זה" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "%(user)s הגיב.ה על דיווח זה:" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "פתור" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "נפתר" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "לא נמצאו דיווחים." + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "מדיניות פרטיות:" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "לוגו:" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "קובץ" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "משתמשים שנמחקו" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "שם משתמש.ת" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "נוסף בתאריך" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "פעיל. ה לאחרונה" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "הפעל משתמש" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "השעה משתמש" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "בטל השעיית משתמש" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "רמת גישה:" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "צרו חשבון" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "מפתח אדמין:" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "שימוש ב-S3:" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "שפת ממשק ברירת מחדל:" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "התקנת BookWyrm" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "צריכים עזרה?" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "צור מדף" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "ערוך מדף" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "כלל הספרים" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "ייבוא ספרים" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "%(formatted_count)s ספרים" +msgstr[3] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "ערוך מדף" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "מחק מדף" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "נמצא על המדף" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "התחיל" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "עד" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "מדף זה ריק." + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "הזמינו" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "עמודים" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "אחוז" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "תוכן" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "כלול אזהרת ספוילר" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "ספוילרים לפניך!" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "הערה:" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "ציטוט:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "קטע מתוך \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "מסננים" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "מסננים הוחלו" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "הסר מסננים" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "סנן" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "עקוב אחרי @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "בטל בקשת מעקב" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "הפסק מעקב אחרי @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "הפסק מעקב" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "אשר" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "תיעוד" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "תמכו ב-%(site_name)s ב-%(support_title)s" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "קוד המקור של BookWyrm זמין באופן חופשי. ניתן לתרום לו או לדווח על בעיות ב-GitHub." + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "אין דירוג" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "כוכב %(half_rating)s" +msgstr[1] "" +msgstr[2] "%(half_rating)s כוכבים" +msgstr[3] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "כוכב %(rating)s" +msgstr[1] "" +msgstr[2] "%(rating)s כוכבים" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "יעד קריאה:" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "ספרים" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "הגדרות הפרטיות של היעד:" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "פרסם לפיד" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "קבע יעד" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "הצלחה!" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "%(percent)s%% הושלמו!" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "קראתם %(read_count)s מתוך %(goal_count)s ספרים." + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "%(username)s קרא.ה %(read_count)s מתוך %(goal_count)s ספרים." + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "עמוד %(page)s מתוך %(total_pages)s" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "עמוד %(page)s" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "חדש יותר" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "הקודם" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "ישן יותר" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "לעוקבים בלבד" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "השאירו דירוג" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "דרגו" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "סיים את \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "(רשות)" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "עדכן התקדמות" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "התחל את \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "הפסק לקרוא את \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "הפסיק.ה לקרוא" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "רוצה לקרוא את \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "בחרו בתבונה! שם המשתמש.ת שלכם לא ניתן לשינוי." + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "הירשם" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "העבר ספר" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "רוצה לקרוא" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "הסר מ-%(name)s" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "מדפים נוספים" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "הסתר סטטוס" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "נערך ב-%(date)s" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "הגיב.ה על %(book)s מאת %(author_name)s" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "מחק סטטוס" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "הצג עוד" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "הצג פחות" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "נמחק" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "לא פעיל" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "בדיקת אימות דו שלבי" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "הכניסו את הקוד מאפליקציית האימות שלכם:" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "אשר והיכנס" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "אימות דו שלבי זמין" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "קבוצות: %(username)s" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "בקשות מעקב" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "ביקורות ותגובות" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "רשימות: %(username)s" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "צור רשימה" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "ל-%(username)s אין עוקבים" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "במעקב" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s לא עוקב.ת אחרי אף משתמש" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "אין עדיין ביקורות או תגובות!" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "ערוך פרופיל" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "פעילות משתמש.ת" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "הצג אפשרויות RSS" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "פיד RSS" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "ביקורות בלבד" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "ציטוטים בלבד" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "הערות בלבד" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "אין עדיין פעילויות!" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "הצג פרופיל ועוד" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "רשימת ספרים: %(name)s" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "ספר %(num)d - מאת %(user)s" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "%(num)d ספרים - מאת %(user)s" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "%(title)s: %(subtitle)s" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "טען סטטוס %(count)d שלא נקרא" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "טען %(count)d סטטוסים שלא נקראו" + diff --git a/locale/hu_HU/LC_MESSAGES/django.mo b/locale/hu_HU/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..2936aa9968 Binary files /dev/null and b/locale/hu_HU/LC_MESSAGES/django.mo differ diff --git a/locale/hu_HU/LC_MESSAGES/django.po b/locale/hu_HU/LC_MESSAGES/django.po new file mode 100644 index 0000000000..e1d5c29b79 --- /dev/null +++ b/locale/hu_HU/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Hungarian\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: hu\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Egy nap" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Egy hét" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Korlátlan" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Helytelen jelszó" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "A jelszó nem egyezik" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Helytelen jelszó" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "A könyv befejezésének a dátuma nem lehet korábbi az olvasás megkezdésének dátumánál." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "A könyv félbehagyásának a dátuma nem lehet korábbi az olvasás megkezdésének dátumánál." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "A könyv félbehagyásának a dátuma nem lehet a jövőben." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "A könyv befejezésének a dátuma nem lehet a jövőben." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Helytelen felhasználónév vagy jelszó" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Ez a felhasználónév már foglalt" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Már létezik felhasználó ezzel az email címmel." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Helytelen kód" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Ez a domain blokkolva van. Kérjük, lépjen kapcsolatba a rendszergazdával, ha úgy gondolja, hogy ez hiba." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Ehhez a könyvhöz már hozzá lett adva ilyen fájltípus. Ha ez nem látható, a domain még függőben van." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Rendezett lista" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Könyv címe" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Értékelés" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Rendezés" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Növekvő" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Csökkenő" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Elsődleges" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Sikeres" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Hivatkozás" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Figyelmeztetés" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Veszély" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Automatikusan előállított jelentés" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Függőben" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Moderátor által felfüggesztve" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Moderátor által törölve" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Domain tiltás" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Hangoskönyv" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "e-Könyv" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Képregényalbum" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Keménytáblás" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Puhatáblás" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Megjegyzés" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Összekapcsolt" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Zárolt" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Személyes" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Kész" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Leállítva" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Importálás megszakítva" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Hiba a könyv betöltésekor" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Nem található egyezés a könyvhöz" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "Sikertelen" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Ingyenes" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Megvásárólható" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Kölcsönözhető" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Jóváhagyva" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "Megoldott jelentés" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "Újranyitott jelentés" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "Törölt felhasználói fiók" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "English (Angol)" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (Katalán)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (Német)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (Eszperantó)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (Spanyol)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (Baszk)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (Galiciai)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (Olasz)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Koreai)" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (Finn)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (Francia)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (Litván)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/id_ID/LC_MESSAGES/django.mo b/locale/id_ID/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..d455e92bf6 Binary files /dev/null and b/locale/id_ID/LC_MESSAGES/django.mo differ diff --git a/locale/id_ID/LC_MESSAGES/django.po b/locale/id_ID/LC_MESSAGES/django.po new file mode 100644 index 0000000000..d0390d4f4a --- /dev/null +++ b/locale/id_ID/LC_MESSAGES/django.po @@ -0,0 +1,7718 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Indonesian\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: id\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Nama pengguna dan kata sandi tidak cocok" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Nama pengguna ini sudah dipakai" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Pengguna dengan surel ini sudah terdaftar." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Kode salah" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Judul buku" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Nilai" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Urutkan" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Berhasil" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Peringatan" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "Bahasa Inggris" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (Bahasa Katalan)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (Bahasa Jerman)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (Bahasa Esperanto)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (Bahasa Spanyol)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (Bahasa Italia)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (Bahasa Finlandia)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (Bahasa Prancis)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (Bahasa Lithuania)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Nederlands (Bahasa Belanda)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (Bahasa Norwegia)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (Bahasa Polandia)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Laman tidak ditemukan" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Aduh!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Galat server" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Tentang" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Selamat datang di %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" + diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo index 5a1ee0a733..df9d69d0d4 100644 Binary files a/locale/it_IT/LC_MESSAGES/django.mo and b/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/locale/it_IT/LC_MESSAGES/django.po b/locale/it_IT/LC_MESSAGES/django.po index d92f7533e7..374f7dda2f 100644 --- a/locale/it_IT/LC_MESSAGES/django.po +++ b/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-09 17:21\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-10-11 15:08\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Italian\n" "Language: it\n" @@ -33,66 +33,65 @@ msgstr "Un mese" msgid "Does Not Expire" msgstr "Non scade" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} usi" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Illimitato" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Password errata" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "La password non corrisponde" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Password errata" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "La data di fine lettura non può essere precedente alla data di inizio." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "La data di fine lettura non può essere precedente alla data di inizio." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "La data d'interruzione della lettura non può essere nel futuro." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "La data di fine lettura non può essere precedente alla data d'inizio." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Nome utente o password errati" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Esiste già un utente con questo nome utente" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Esiste già un'utenza con questo indirizzo email." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Questo indirizzo email non può essere registrato." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Codice errato" #: bookwyrm/forms/links.py:36 msgid "This domain is blocked. Please contact your administrator if you think this is an error." -msgstr "Questo dominio è bloccato. Per favore contatta l'amministratore se pensi che si tratti di un errore." +msgstr "Questo dominio è bloccato. Contatta l’amministratore se ritieni che si tratti di un errore." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." -msgstr "Questo collegamento è già stato aggiunto per questo libro. Se non è visibile, il dominio è ancora in sospeso." +msgstr "Questo link con il tipo di file è già stato aggiunto per questo libro. Se non è visibile, il dominio è ancora in attesa di approvazione." #: bookwyrm/forms/lists.py:26 msgid "List Order" @@ -102,8 +101,8 @@ msgstr "Ordina Lista" msgid "Book Title" msgstr "Titolo del libro" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Valutazione" @@ -145,8 +144,8 @@ msgstr "Attenzione" msgid "Automatically generated report" msgstr "Rapporto generato automaticamente" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Cancellazione del moderatore" msgid "Domain block" msgstr "Blocco del dominio" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audiolibro" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Graphic novel" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Copertina rigida" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Brossura" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "“%(value)s” non rispetta il formato previsto per un ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "“%(value)s” non ha un codice di controllo ISBN corretto; valore atteso: %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Commenta" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recensione" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citazione" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Segui" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blocca" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "Errore sconosciuto durante l'importazione del libro" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "non autorizzato" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "connection_error" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "invalid_relationship" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federato" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s non è un Id remoto valido" msgid "%(value)s is not a valid username" msgstr "%(value)s non è un nome utente valido" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nome utente" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Un utente con questo nome utente esiste già." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Un utente con questo nome utente esiste già." msgid "Public" msgstr "Pubblico" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Pubblico" msgid "Unlisted" msgstr "Non in lista" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Non in lista" msgid "Followers" msgstr "Followers" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Followers" msgid "Private" msgstr "Privata" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Attivo" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Completato" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Interrotto" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importazione interrotta" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Errore nel caricamento del libro" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Impossibile trovare una corrispondenza per il libro" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Non Riuscita" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Libero" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Acquistabile" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponibile per il prestito" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Approvato" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Commenta" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Segnalazione risolta" @@ -363,123 +429,159 @@ msgstr "Dominio autorizzato" msgid "Deleted item" msgstr "Elemento rimosso" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "Sconosciuto" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Stato di %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Commento di %(display_name)ssu %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "Citazione di %(display_name)sda %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "Recensione di %(display_name)sdi %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s ha valutato %(book_title)s: %(display_rating).1f stella" +msgstr[1] "%(display_name)s ha valutato %(book_title)s: %(display_rating).1f stelle" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Recensioni" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Commenti" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citazioni" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Tutto il resto" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "La tua timeline" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Home" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Timeline dei libri" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Libri" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Inglese)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (catalano)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Tedesco)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Spagnolo)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Basque)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galiziano)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Coreano)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finlandese)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Francese)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (Olandese)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norvegese)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polacco)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portoghese Brasiliano)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portoghese europeo)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Rumeno (Romanian)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Svedese)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (ucraino)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Cinese Semplificato)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Cinese Tradizionale)" @@ -494,11 +596,11 @@ msgstr "Permesso negato" #: bookwyrm/templates/403.html:11 #, python-format msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." -msgstr "Non hai i permessi per visualizzare questa pagina o eseguire questa azione. Il tuo livello di autorizzazione utente è %(level)s." +msgstr "Non hai il permesso di visualizzare questa pagina o di eseguire questa azione. Il tuo livello di permesso utente è %(level)s." #: bookwyrm/templates/403.html:15 msgid "If you think you should have access, please speak to your BookWyrm server administrator." -msgstr "Se pensi di avere accesso, parla con il tuo amministratore del server BookWyrm." +msgstr "Se ritieni di dover avere accesso, ti preghiamo di contattare l’amministratore del server BookWyrm." #: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 msgid "Not Found" @@ -517,12 +619,8 @@ msgid "The file you are uploading is too large." msgstr "Il file che stai caricando è troppo grande." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -" Puoi provare a usare un file più piccolo, o chiedere al tuo amministratore del server BookWyrm di aumentare l'impostazione DATA_UPLOAD_MAX_MEMORY_SIZE.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Puoi provare a utilizzare un file più piccolo oppure chiedere all’amministratore del server BookWyrm di aumentare il valore di DATA_UPLOAD_MAX_MEMORY_SIZE." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -550,26 +648,26 @@ msgstr "Benvenuto su %(site_name)s!" #: bookwyrm/templates/about/about.html:25 #, python-format msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." -msgstr "%(site_name)s fa parte di BookWyrm, una rete di comunità indipendenti e autogestite per i lettori. Anche se puoi interagire apparentemente con gli utenti di tutte le istanze di BookWyrm, questa comunità è unica." +msgstr "%(site_name)s fa parte di BookWyrm, una rete di comunità indipendenti e autonome per lettori. Pur potendo interagire senza problemi con gli utenti di tutta la rete BookWyrm, questa comunità è unica nel suo genere." #: bookwyrm/templates/about/about.html:45 #, python-format msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." -msgstr "%(title)s è il libro più amato di %(site_name)s, con un punteggio medio di %(rating)s su 5." +msgstr "%(title)s è il libro più amato di %(site_name)s, con una valutazione media di %(rating)s su 5." #: bookwyrm/templates/about/about.html:64 #, python-format msgid "More %(site_name)s users want to read %(title)s than any other book." -msgstr "Più utenti di %(site_name)s vogliono leggere %(title)s rispetto a qualsiasi altro libro." +msgstr "Più utenti di %(site_name)s desiderano leggere %(title)s rispetto a qualsiasi altro libro." #: bookwyrm/templates/about/about.html:83 #, python-format msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." -msgstr "%(title)s ha le valutazioni più divisive di ogni libro su %(site_name)s." +msgstr "%(title)s è il libro con le valutazioni più contrastanti su %(site_name)s." #: bookwyrm/templates/about/about.html:94 msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." -msgstr "Traccia la tue letture, parla di libri, scrivi recensioni, e scopri cosa leggere dopo. BookWyrm, sempre libero, anti-corporate, orientato alla comunità, è un software a misura d'uomo, progettato per rimanere piccolo e personale. Se hai richieste di funzionalità, segnalazioni di bug o grandi sogni, contatta e fai sentire la tua voce." +msgstr "Tieni traccia delle tue letture, parla di libri, scrivi recensioni e scopri cosa leggere dopo. Sempre senza pubblicità, anti-corporate e orientato alla comunità, BookWyrm è un software su misura per le persone, progettato per rimanere piccolo e personale. Se hai richieste di funzionalità, segnalazioni di bug o grandi sogni, contattaci e fai sentire la tua voce." #: bookwyrm/templates/about/about.html:105 msgid "Meet your admins" @@ -578,7 +676,7 @@ msgstr "Incontra gli amministratori" #: bookwyrm/templates/about/about.html:108 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "I moderatori e gli amministratori di %(site_name)s mantengono il sito attivo e funzionante, applicano il codice di condotta, e rispondono quando gli utenti segnalano spam o comportamenti non adeguati." +msgstr "I moderatori e gli amministratori di %(site_name)s mantengono il sito attivo e funzionante, fanno rispettare il codice di condotta e intervengono quando gli utenti segnalano spam o comportamenti scorretti." #: bookwyrm/templates/about/about.html:122 msgid "Moderator" @@ -618,7 +716,7 @@ msgid "Statuses posted:" msgstr "Stati pubblicati:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versione del software:" @@ -691,7 +789,7 @@ msgstr "Rendi pubblica la pagina" #: bookwyrm/templates/annual_summary/layout.html:99 msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." -msgstr "Quando rendi la tua pagina privata, la vecchia chiave non darà più accesso alla pagina. Verrà creata una nuova chiave se la pagina sarà nuovamente pubblicata." +msgstr "Quando rendi la tua pagina privata, la vecchia chiave non darà più accesso alla pagina. Verrà creata una nuova chiave se la pagina viene nuovamente resa pubblica." #: bookwyrm/templates/annual_summary/layout.html:112 #, python-format @@ -728,7 +826,7 @@ msgstr "La loro lettura più breve quest’anno…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -750,7 +848,7 @@ msgstr "…e il più lungo" msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" msgstr[0] "%(display_name)s ha fissato un obiettivo di %(goal)s libro da leggere nel %(year)s,
    e ha raggiunto il %(goal_percent)s%% di questo obiettivo" -msgstr[1] "%(display_name)s ha fissato un obiettivo di %(goal)s libri da leggere nel %(year)s,
    e ha raggiunto %(goal_percent)s%% di questo obiettivo" +msgstr[1] "%(display_name)s si è prefissato l’obiettivo di leggere %(goal)s libri nel %(year)s,
    e ha raggiunto il %(goal_percent)s%% di tale obiettivo." #: bookwyrm/templates/annual_summary/layout.html:211 msgid "Way to go!" @@ -765,7 +863,7 @@ msgstr[1] "%(display_name)s ha lasciato %(ratings_total)s voti,
    il loro pu #: bookwyrm/templates/annual_summary/layout.html:240 msgid "Their best rated review" -msgstr "La loro recensione migliore" +msgstr "La recensione con il punteggio più alto" #: bookwyrm/templates/annual_summary/layout.html:253 #, python-format @@ -808,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Vedi su Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Sito web" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Visualizza record ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Vedi su ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Carica dati" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Visualizza su OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Visualizza su Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Visualizza su LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Visualizza su Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Libri di %(name)s" @@ -882,8 +984,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separa valori multipli con la virgola (,)" @@ -895,50 +997,54 @@ msgstr "Biografia:" msgid "Wikipedia link:" msgstr "Link di Wikipedia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Sito web:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data di nascita:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data di morte:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identificativi Autore" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Chiave OpenLibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Chiave Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Chiave Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -946,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -960,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Salva" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -977,6 +1083,7 @@ msgstr "Salva" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -987,107 +1094,111 @@ msgstr "Cancella" #: bookwyrm/templates/author/sync_modal.html:15 #, python-format msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." -msgstr "Il caricamento dei dati si collegherà a %(source_name)s e verificherà eventuali metadati relativi a questo autore che non sono presenti qui. I metadati esistenti non vengono sovrascritti." +msgstr "Il caricamento dei dati si connetterà a %(source_name)s e verificherà la presenza di eventuali metadata su questo autore non presenti qui. I metadata esistenti non verranno sovrascritti." #: bookwyrm/templates/author/sync_modal.html:24 #: bookwyrm/templates/book/edit/edit_book.html:137 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Conferma" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Impossibile connettersi alla sorgente remota." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Modifica libro" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Clicca per aggiungere una copertina" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Impossibile caricare la copertina" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Clicca per ingrandire" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "Visualizza su Finna" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s recensione)" msgstr[1] "(%(review_count)s recensioni)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Aggiungi descrizione" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrizione:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s edizione" msgstr[1] "%(count)s edizioni" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Hai salvato questa edizione in:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." -msgstr "Una diversa edizione di questo libro è sul tuo scaffale %(shelf_name)s." +msgstr "Un’a edizione diversa di questo libro si trova nella tua libreria %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Le tue attività di lettura" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Aggiungi data di lettura" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Non hai alcuna attività di lettura per questo libro." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Le tue recensioni" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "I tuoi commenti" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Le tue citazioni" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Argomenti" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Luoghi" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1095,18 +1206,18 @@ msgstr "Luoghi" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Liste" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Aggiungi all'elenco" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1129,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN copiato!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Numero OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna ID:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Aggiungi copertina" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Carica la copertina:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Carica la copertina dall'URL:" @@ -1236,7 +1357,7 @@ msgid "This is a new work" msgstr "Si tratta di un nuovo lavoro" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1289,125 +1410,129 @@ msgstr "Indietro" msgid "Title:" msgstr "Titolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Ordina per titolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Sottotitolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Numero nella serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Lingue:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Argomenti:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Aggiungi argomento" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Rimuovi argomento" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Aggiungi argomento" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Data di pubblicazione" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editore:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Prima data di pubblicazione:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data di pubblicazione:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autori" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Rimuovi %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Pagina autore per %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Aggiungi Autori:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Aggiungi Autore" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Jane Doe" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Aggiungi un altro autore" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Copertina" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Caratteristiche" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Dettagli del formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Pagine:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identificativi del Libro" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "OpenLibrary ID:" @@ -1435,7 +1560,7 @@ msgid "Any" msgstr "Qualsiasi" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Lingua:" @@ -1496,12 +1621,15 @@ msgid "Domain" msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1513,8 +1641,8 @@ msgstr "Stato" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1560,8 +1688,8 @@ msgstr "Esci da BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Questo link ti sta portando a: %(link_url)s.
    È qui che vuoi andare?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continua" @@ -1615,9 +1743,21 @@ msgstr "Libro non ordinato" #: bookwyrm/templates/book/sync_modal.html:15 #, python-format msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." -msgstr "Il caricamento dei dati si collegherà a %(source_name)s e verificherà eventuali metadati relativi a questo autore che non sono presenti qui. I metadati esistenti non vengono sovrascritti." +msgstr "Il caricamento dei dati si connetterà a %(source_name)s e verificherà la presenza di eventuali metadata su questo libro non presenti qui. I metadata esistenti non verranno sovrascritti." + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Modifica recensione" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Modifica citazione" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Modifica commento" -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Modifica stato" @@ -1644,7 +1784,7 @@ msgstr "Codice di conferma:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Invia" @@ -1726,12 +1866,12 @@ msgstr "Suggerimenti" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1852,8 +1992,8 @@ msgstr "Ehilà," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm ospitato su %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm ospitato su %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1871,8 +2011,8 @@ msgstr "Unisciti ora" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Scopri di più su %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Ulteriori informazioni su %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2048,19 +2188,19 @@ msgid "Add to your books" msgstr "Aggiungi ai tuoi libri" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Da leggere" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Letture correnti" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2069,7 +2209,7 @@ msgid "Read" msgstr "Letti" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Lettura in pausa" @@ -2102,7 +2242,7 @@ msgstr "Puoi aggiungere libri quando inizi a usare %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Cerca" @@ -2190,7 +2330,7 @@ msgstr "Mostra questo account negli utenti suggeriti:" #: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." -msgstr "Il tuo account verrà visualizzato nella directory e potrebbe essere consigliato ad altri utenti di BookWyrm." +msgstr "Il tuo account sarà visibile nell’elenco pubblico e potrebbe essere consigliato ad altri utenti di BookWyrm." #: bookwyrm/templates/get_started/users.html:8 msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." @@ -2392,7 +2532,7 @@ msgstr "Successivo" #: bookwyrm/templates/guided_tour/book.html:31 msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." -msgstr "Qui puoi impostare uno stato di lettura per questo libro. È possibile premere il pulsante per passare alla fase successiva, o utilizzare il pulsante a discesa per selezionare lo stato di lettura che si desidera." +msgstr "Qui puoi impostare uno stato di lettura per questo libro. Puoi premere il pulsante per passare alla fase successiva oppure usare il menu a discesa per selezionare lo stato di lettura che desideri impostare." #: bookwyrm/templates/guided_tour/book.html:32 msgid "Reading status" @@ -2400,11 +2540,11 @@ msgstr "Stato di lettura" #: bookwyrm/templates/guided_tour/book.html:55 msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." -msgstr "Puoi anche aggiungere manualmente date di lettura qui. A differenza della modifica dello stato di lettura utilizzato nel metodo precedente, aggiungere le date manualmente non le aggiungerà automaticamente ai tuoi scaffali Leggi o Lettura." +msgstr "Puoi anche aggiungere manualmente le date di lettura qui. A differenza della modifica dello stato di lettura tramite il metodo precedente, l’inserimento manuale delle date non aggiornerà automaticamente gli scaffali Letti o In lettura." #: bookwyrm/templates/guided_tour/book.html:55 msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" -msgstr "Hai un libro preferito che leggi di nuovo ogni anno? Abbiamo pensato anche a te - puoi aggiungere più date di lettura per lo stesso libro 😀" +msgstr "Hai un libro preferito che rileggi ogni anno? Nessun problema: puoi aggiungere più date di lettura per lo stesso libro 😀" #: bookwyrm/templates/guided_tour/book.html:79 msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." @@ -2456,7 +2596,11 @@ msgstr "Allerta spoiler" #: bookwyrm/templates/guided_tour/book.html:224 msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" -msgstr "Scegli chi può vedere il tuo post qui. La privacy dei post può essere Pubblico (tutti possono vederlo), Non elencato (tutti possono vederlo, ma non appare nei feed pubblici o nelle pagine di scoperta), I seguaci (solo i tuoi seguaci possono vederlo) o Privati (solo tu puoi vederlo)" +msgstr "Scegli chi può vedere il tuo post. La visibilità può essere impostata su:\n" +"Pubblica (tutti possono vedere),\n" +"Non in elenco (tutti possono vedere, ma non appare nei feed pubblici o nelle pagine di scoperta),\n" +"Solo follower (solo i tuoi follower possono vedere),\n" +"oppure Privata (solo tu puoi vedere)" #: bookwyrm/templates/guided_tour/book.html:225 #: bookwyrm/templates/snippets/privacy_select.html:6 @@ -2754,6 +2898,7 @@ msgstr "Puoi creare o unirti a un gruppo con altri utenti. I gruppi possono cond #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Gruppi" @@ -2860,7 +3005,7 @@ msgstr "Non è un file di csv valido" msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." msgstr[0] "Attualmente, puoi importare libri %(display_size)s ogni giorno %(import_limit_reset)s." -msgstr[1] "Al momento puoi importare %(import_size_limit)s libri ogni %(import_limit_reset)s giorni." +msgstr[1] "Al momento puoi importare %(display_size)s libri ogni %(import_limit_reset)s giorni." #: bookwyrm/templates/import/import.html:26 #, python-format @@ -2868,11 +3013,13 @@ msgid "You have %(display_left)s left." msgstr "Ti rimane %(display_left)s." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "In media, le importazioni recenti hanno richiesto %(hours)s ore." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "In media, le importazioni recenti hanno richiesto %(minutes)s ore." @@ -2898,69 +3045,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Puoi scaricare i tuoi dati Goodreads dalla pagina \"Importa/Esporta\" del tuo account Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Dati file:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Includi recensioni" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Impostazione della privacy per le recensioni importate:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Crea nuovi scaffali se non esistono" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Impostazione della privacy per recensioni e scaffali importati:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importa" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Hai raggiunto il limite per le importazioni." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Le importazioni sono temporaneamente disabilitate; grazie per la pazienza." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importazioni recenti" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Data Creazione" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Ultimo Aggiornamento" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementi" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Nessuna importazione recente" @@ -2984,20 +3143,24 @@ msgid "Imports" msgstr "Importazioni" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importazione iniziata:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "In corso" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Aggiorna" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Interrompi importazione" @@ -3014,6 +3177,7 @@ msgid "Review items" msgstr "Esaminare gli elementi" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3021,6 +3185,7 @@ msgstr[0] "%(display_counter)s oggetto non è stato importato." msgstr[1] "%(display_counter)s elementi non sono stati importati." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Visualizza e risolvere gli elementi non riusciti" @@ -3029,12 +3194,14 @@ msgid "Row" msgstr "Riga" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titolo" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3043,8 +3210,8 @@ msgid "Openlibrary key" msgstr "Chiave OpenLibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autore" @@ -3052,13 +3219,9 @@ msgstr "Autore" msgid "Shelf" msgstr "Scaffale" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recensione" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Libro" @@ -3076,6 +3239,8 @@ msgid "View imported review" msgstr "Visualizza recensione importata" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importato" @@ -3111,114 +3276,119 @@ msgstr "Se si desidera migrare qualsiasi stato (commenti, recensioni, o preventi #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Attualmente ti è consentito importare un utente ogni %(user_import_hours)s ore." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "Attualmente puoi importare un utente ogni %(hours)s ore." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "Sarai in grado di importare un file utente su %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Potrai importare un altro file utente alle %(next_time)s" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Fase 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Selezionare un file di esportazione generato da un altro account BookWyrm. Il formato del file dovrebbe essere .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Fase 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Deseleziona le caselle di controllo per i dati che non desideri includere nella tua importazione." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Profilo utente" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Sovrascrivi il nome, il riepilogo e l'avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Impostazioni utente" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Sovrascrivi:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "Indica se è richiesta l'approvazione manuale per gli altri utenti per seguire il proprio account" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "Se seguenti/seguaci sono mostrati sul tuo profilo" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "Se il tuo obiettivo di lettura è mostrato sul tuo profilo" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "Se si vede l'utente seguire suggerimenti" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "Indica se il tuo account è suggerito agli altri" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Il tuo fuso orario" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "La tua impostazione predefinita privacy post" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Followers e seguiti" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Blocchi utente" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Obiettivi lettura" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Sovrascrivi gli obiettivi di lettura per tutti gli anni elencati nel file di importazione" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Scaffali" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Cronologia lettura" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Recensioni dei libri" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Commenti sui libri" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Liste di libri" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Liste salvate" @@ -3242,15 +3412,18 @@ msgid "Reject" msgstr "Rifiutato" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Elementi non riusciti" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Risoluzione dei problemi" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Riprovare un'importazione può correggere gli elementi mancanti in casi quali:" @@ -3259,21 +3432,96 @@ msgid "The book has been added to the instance since this import" msgstr "Il libro è stato aggiunto all'istanza dopo questa importazione" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Un errore transitorio o un timeout hanno causato la non disponibilità della sorgente dati esterna." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm è stato aggiornato da questa importazione con una correzione di bug" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Contatta il tuo amministratore o apri un problema se stai vedendo caricamenti non riusciti." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Stato Importazione Utente" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Stato Nuovo Tentativo Importazione Utente" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Importazioni utente" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Totale" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Stati" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Segui & Bloccati" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Libri importati" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Gestione errori importazione utenti" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "Il tuo account non è stato impostato come alias dell'account utente originale" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "Riprovare a importare non funziona in questi casi:" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "Un utente, stato o server BookWyrm è stato eliminato dopo la creazione del file di importazione" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "Quando si importano degli stati ma il tuo vecchio account è stato eliminato" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "Attualmente puoi importare un utente o riprovare ogni %(hours)s ore." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Potrai riprovare questa importazione alle %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Relazione" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Motivo" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Crea un account" @@ -3324,7 +3572,7 @@ msgid "Login" msgstr "Accedi" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Accedi" @@ -3340,22 +3588,22 @@ msgstr "Indirizzo email confermato con successo." msgid "Username:" msgstr "Nome utente:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Password:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Hai dimenticato la tua password?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Ulteriori informazioni su questo sito" @@ -3383,7 +3631,7 @@ msgstr "Reimposta password" msgid "Reactivate Account" msgstr "Riattiva account" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Riattiva account" @@ -3393,8 +3641,8 @@ msgid "%(site_name)s search" msgstr "Ricerca %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Cerca un libro, un utente o una lista" +msgid "Search for a book, author, user, or list" +msgstr "Cerca un libro, autore, utente o lista" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3607,6 +3855,8 @@ msgid "List position" msgstr "Posizione elenco" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Imposta" @@ -3931,7 +4181,7 @@ msgstr "%(related_user)s e %(other_user_di #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Un link a un nuovo dominio necessita di una revisione" msgstr[1] "%(display_count)s link a nuovi domini hanno bisogno di moderazione" @@ -4102,21 +4352,21 @@ msgstr "Stai già seguendo %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Hai già richiesto di seguire %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Segui %(username)s sul fediverso" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Segui %(username)s da un altro account del fediverso come BookWyrm, Mastodon o Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Gestione utente da seguire da:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Segui!" @@ -4157,80 +4407,12 @@ msgstr "Effettua prima il login..." msgid "Follow %(username)s" msgstr "Segui %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Ora stai seguendo %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Autenticazione a due fattori" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Impostazioni 2FA aggiornate con successo" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Scrivi o copia e incolla questi codici da qualche parte al sicuro." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "È necessario utilizzarli in ordine, e non saranno visualizzati di nuovo." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "L'autenticazione a due fattori è attiva sul tuo account." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Disabilita 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "È possibile generare codici di backup da utilizzare nel caso in cui non si abbia accesso alla tua app di autenticazione. Se si generano nuovi codici, qualsiasi codice di backup precedentemente generato non funzionerà più." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Genera i codici di backup" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Scansiona il codice QR con la tua app di autenticazione e poi inserisci il codice dalla tua app qui sotto per confermare la configurazione." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Usa chiave di installazione" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nome account:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Codice:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Inserisci il codice della tua app:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Puoi rendere il tuo account più sicuro utilizzando l'autenticazione a due fattori (2FA). Questo richiederà di inserire un codice una tantum utilizzando un'applicazione telefonica come Authy, Google Authenticator o Microsoft Authenticator ogni volta che accedi." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Conferma la tua password per iniziare a configurare 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Configura 2FA" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 @@ -4330,6 +4512,12 @@ msgstr "Cancellare permanentemente l'account" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "L'eliminazione del tuo account non può essere annullata. Il nome utente non sarà disponibile per la registrazione in futuro." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Disabilita 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Disabilita autenticazione a due fattori" @@ -4359,12 +4547,12 @@ msgstr "Profilo" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Visualizzazione" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacy" @@ -4373,94 +4561,158 @@ msgid "Show reading goal prompt in feed" msgstr "Mostra gli obiettivi di lettura nel feed" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Mostra valutazioni" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Mostra gli utenti suggeriti" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Mostra questo account negli utenti suggeriti" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Il tuo account verrà visualizzato nella directory e potrebbe essere consigliato ad altri utenti di BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Fuso orario preferito: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Approvare manualmente i follower" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Nascondi i seguaci e i seguiti sul profilo" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Privacy predefinita dei post:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Stai cercando la privacy degli scaffali? Puoi impostare un livello di visibilità separato per ciascuno dei tuoi scaffali. Vai a I tuoi libri, scegli uno scaffale dalla barra delle schede e fai clic su \"Modifica scaffale\"." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "Esporta Account BookWyrm" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "Puoi creare un file di esportazione qui. Questo ti permetterà di migrare i tuoi dati in un altro account BookWyrm." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    Il tuo file includerà:

    • Profilo utente
    • La maggior parte delle impostazioni utente
    • Obiettivi di lettura
    • Scaffali
    • Cronologia lettura
    • Recensioni libro
    • Stato
    • Le tue liste e salvate
    • Quali utenti segui e blocca

    Il tuo file non includerà:

    • Messaggi diretti
    • Risposte al tuo stato
    • Gruppi
    • Preferiti
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Il tuo file includerà:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Più impostazioni utente" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Le tue liste e le liste salvate" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Quali utenti segui e blocchi" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Il tuo file non includerà:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Messaggi diretti" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Risposte ai tuoi stati" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Preferiti" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "Nel tuo nuovo account BookWyrm puoi scegliere cosa importare: non dovrai importare tutto ciò che viene esportato." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "Se si desidera migrare qualsiasi stato (commenti, recensioni, o preventivi) devi impostare l'account su cui ti stai spostando come alias di questo, o sposta questo account nel nuovo account, prima di importare i tuoi dati utente." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Le esportazioni dei nuovi utenti sono attualmente disabilitate." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "Le impostazioni di esportazione dell'utente possono essere modificate da la pagina Importazioni nella dashboard dell'amministratore." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "Potrai creare un nuovo file di esportazione su %(next_available)s" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "In media, le esportazioni recenti hanno richiesto %(hours)s ore." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "In media, le esportazioni recenti hanno richiesto %(minutes)s minuti." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Crea file di esportazione utente" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Esportazioni Recenti" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "I file di esportazione dell'utente mostreranno 'completo' una volta pronti. Questo potrebbe richiedere un po' di tempo. Clicca sul link per scaricare il file." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Data" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Dimensione" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Scarica la tua esportazione" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "L'archivio non è più disponibile" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4479,6 +4731,10 @@ msgstr "Scarica il file" msgid "Account" msgstr "Profilo" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "Impostazioni di Sicurezza" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Sposta account" @@ -4516,6 +4772,124 @@ msgstr "Ricordati di aggiungere questo utente come alias dell'account di destina msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Inserisci il nome utente per l'account verso cui ti spostare ad es. user@example.com:" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "Sicurezza dell'account" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Autenticazione a due fattori" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Impostazioni 2FA aggiornate con successo" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Scrivi o copia e incolla questi codici da qualche parte al sicuro." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "È necessario utilizzarli in ordine, e non saranno visualizzati di nuovo." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "L'autenticazione a due fattori è attiva sul tuo account." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "È possibile generare codici di backup da utilizzare nel caso in cui non si abbia accesso alla tua app di autenticazione. Se si generano nuovi codici, qualsiasi codice di backup precedentemente generato non funzionerà più." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Genera i codici di backup" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Scansiona il codice QR con la tua app di autenticazione e poi inserisci il codice dalla tua app qui sotto per confermare la configurazione." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Usa chiave di installazione" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nome account:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Codice:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Inserisci il codice della tua app:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Puoi rendere il tuo account più sicuro utilizzando l'autenticazione a due fattori (2FA). Questo richiederà di inserire un codice una tantum utilizzando un'applicazione telefonica come Authy, Google Authenticator o Microsoft Authenticator ogni volta che accedi." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Conferma la tua password per iniziare a configurare 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Configura 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "Sessioni" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "Indirizzo IP" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "IP" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "Sistema Operativo" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "SO" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "Browser" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "Tu" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4561,6 +4935,7 @@ msgstr "Inizia la lettura" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Avanzamento" @@ -4691,8 +5066,8 @@ msgstr "Chiave di ricerca" msgid "Search type" msgstr "Tipo di ricerca" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4702,12 +5077,12 @@ msgstr "Tipo di ricerca" msgid "Users" msgstr "Utenti" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Nessun risultato per \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4729,7 +5104,7 @@ msgstr "Modifica" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Annunci" @@ -4747,13 +5122,13 @@ msgstr "Falso" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data d'inizio:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data di fine:" @@ -4822,7 +5197,6 @@ msgstr "Colore:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Regole di moderazione automatica" @@ -4835,35 +5209,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Gli utenti o gli stati che sono già stati segnalati (a prescindere dal fatto che il report sia stato risolto) non verranno contrassegnati." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Pianificazione:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Ultima esecuzione:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Numero di esecuzioni totali:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Attivato:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Elimina pianificazione" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Esegui ora" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "L'ultima data di esecuzione non sarà aggiornata" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Pianifica una scansione" @@ -4908,6 +5290,7 @@ msgstr "Rimuovi regola" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Stato di Celery" @@ -4936,6 +5319,7 @@ msgid "Import triggered" msgstr "Importazione attivata" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Connettori" @@ -4979,8 +5363,9 @@ msgid "Active Tasks" msgstr "Processi attivi" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4993,6 +5378,8 @@ msgid "Run time" msgstr "Tempo di esecuzione" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Priorità" @@ -5025,6 +5412,66 @@ msgstr "Eliminare le code può causare gravi problemi, inclusa la perdita di dat msgid "Errors" msgstr "Errori" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "Finna.fi è un servizio di ricerca che raccoglie materiali da centinaia di organizzazioni finlandesi in un unico portale." + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "Configura nuovo connettore" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Motivo della disattivazione:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Disabilita" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "Abilita" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "Configurazione del connettore" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "I connettori sono fonti di dati su libri e autori." + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "La priorità determina l’ordine in cui appaiono i risultati della ricerca. La priorità più alta è 1. La priorità predefinita è 2." + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "Le impostazioni del connettore determinano solo se un connettore verrà utilizzato per fornire i risultati di ricerca. Per gestire ulteriori interazioni con altri server federati, inclusi i blocchi di dominio, consulta" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Istanze federate" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "Deve essere aggiornato. Consulta le note di rilascio recenti per maggiori informazioni." + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Aggiorna" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5032,7 +5479,7 @@ msgid "Dashboard" msgstr "Dashboard" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Totale utenti" @@ -5041,40 +5488,36 @@ msgstr "Totale utenti" msgid "Active this month" msgstr "Attivo questo mese" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Stati" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Lavori" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Attività di Istanza" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervallo:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Giorni" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Settimane" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Attività di registrazione dell'utente" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Attività di stato" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Opere create" @@ -5086,9 +5529,13 @@ msgstr "Registrazioni" msgid "Statuses posted" msgstr "Stati pubblicati" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Totale" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Vuoi controllare automaticamente le nuove versioni di BookWyrm? (consigliato)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Controlli pianificati" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5170,7 +5617,7 @@ msgstr "Nessun dominio email attualmente bloccato" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Configurazione email" @@ -5183,7 +5630,7 @@ msgid "Successfully sent test email." msgstr "Email di prova inviata correttamente." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Mittente email:" @@ -5231,15 +5678,6 @@ msgstr "Invia e-mail di prova" msgid "Add instance" msgstr "Aggiungi istanza" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Istanze federate" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5315,12 +5753,6 @@ msgstr "Note" msgid "No notes" msgstr "Nessuna nota" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blocca" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Tutti gli utenti di questa istanza saranno disattivati." @@ -5373,6 +5805,49 @@ msgstr "Software" msgid "No instances found" msgstr "Nessun istanza trovata" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "File scaduti" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Completati" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5419,7 +5894,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Alcuni utenti potrebbero provare a importare un gran numero di libri, che si desidera limitare." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Imposta il valore a 0 per non imporre alcun limite." @@ -5439,62 +5914,81 @@ msgstr "giorni." msgid "Set limit" msgstr "Imposta limite" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Disabilita l'avvio di esportazioni di nuovi utenti" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Questo è destinato a essere utilizzato solo quando le cose sono andate molto male con le esportazioni e si deve mettere in pausa la funzione mentre si affrontano i problemi." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Mentre le esportazioni sono disabilitate, agli utenti non sarà consentito avviare le nuove esportazioni, ma le esportazioni esistenti non saranno influenzate." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Disabilita le esportazioni degli utenti" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "Limita la frequenza con cui gli utenti possono importare ed esportare" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "Alcuni utenti potrebbero provare ad eseguire le importazioni o le esportazioni degli utenti molto frequentemente, che si desidera limitare." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Limita le importazioni e le esportazioni degli utenti a una volta ogni " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Limita la frequenza con cui gli utenti possono importare ed esportare i dati utente" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "ore" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "Cambia limite" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Gli utenti non sono attualmente in grado di avviare nuove esportazioni. Questa è l'impostazione predefinita." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Al momento non è possibile fornire le esportazioni degli utenti quando si utilizza l'archivio Azure." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Abilita le esportazioni degli utenti" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Importazioni Del Libro" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Completati" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Utente" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Data Aggiornamento" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Oggetti in sospeso" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Oggetti riusciti" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Nessuna importazione corrispondente." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Importazioni utente" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5658,6 +6152,10 @@ msgstr "Moderazione" msgid "Reports" msgstr "Reports" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5668,22 +6166,26 @@ msgstr "Link ai domini" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Impostazioni dell'istanza" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Impostazioni Sito" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5691,7 +6193,7 @@ msgstr "Impostazioni Sito" msgid "Registration" msgstr "Registrazione" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5897,6 +6399,61 @@ msgstr "Risolto" msgid "No reports found." msgstr "Nessun rapporto trovato." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Attività pianificate" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Attività" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Nome" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Task Celery" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Data aggiornata" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Ultima esecuzione effettuata il" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Programma" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "ID programma" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Disabilitato" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Annulla pianificazione" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Nessuna attività pianificata" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Programma" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Nessun programma trovato" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6142,10 +6699,6 @@ msgstr "Approvare manualmente i follower:" msgid "Discoverable:" msgstr "Scopribile:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Motivo della disattivazione:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Dettagli dell'istanza" @@ -6239,8 +6792,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Il tuo dominio sembra essere mal configurato. Non dovrebbe includere protocollo o slash." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Stai eseguendo BookWyrm in modalità di produzione senza https. USE_HTTPS dovrebbe essere abilitato in produzione." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "Stai eseguendo BookWyrm con localhost. Questo non deve mai essere usato in un ambiente di produzione." #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6250,39 +6803,39 @@ msgstr "Impostazioni" msgid "Instance domain:" msgstr "Dominio dell'istanza:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocollo:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "URL principale dell’istanza:" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Utilizzo S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Lingua predefinita dell'interfaccia:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Abilita anteprima immagini:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Abilita miniature immagini:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Sembra tutto corretto?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Questa è la tua ultima possibilità d'impostare il tuo dominio e protocollo." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Puoi modificare le impostazioni dell'istanza nel file .env sul tuo server." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Visualizza le istruzioni di installazione" @@ -6299,7 +6852,7 @@ msgid "Need help?" msgstr "Hai bisogno di aiuto?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Crea scaffale" @@ -6307,59 +6860,72 @@ msgstr "Crea scaffale" msgid "Edit Shelf" msgstr "Modifica Scaffale" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Tutti i libri" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importa libri" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s libro" msgstr[1] "%(formatted_count)s libri" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(mostra %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Modifica scaffale" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Elimina scaffale" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Scaffali" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Iniziato" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Completato" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Finito" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "Non abbiamo trovato libri che corrispondano a %(shelves_filter_query)s." + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Questo scaffale è vuoto." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Filtro per parola chiave" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Inserisci il testo qui" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Invita" @@ -6461,10 +7027,6 @@ msgstr "Attenzione Spoiler!" msgid "Comment:" msgstr "Commenta:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Aggiorna" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Pubblica" @@ -6490,7 +7052,7 @@ msgstr "Alla pagina:" msgid "At percent:" msgstr "Alla percentuale:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "a" @@ -6535,10 +7097,6 @@ msgstr "Applica filtri" msgid "Follow @%(username)s" msgstr "Segui %(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Segui" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Annulla richiesta di seguire" @@ -6571,7 +7129,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Nessuna valutazione" @@ -6583,7 +7141,7 @@ msgstr[0] "%(half_rating)s stella" msgstr[1] "%(half_rating)s stelle" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6812,6 +7370,10 @@ msgstr "Interrompi la lettura" msgid "Finish reading" msgstr "Finito di leggere" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Mostra valutazione" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Mostra stato" @@ -7167,8 +7729,9 @@ msgid "View profile and more" msgstr "Visualizza profilo e altro" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Il file supera la dimensione massima: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7187,25 +7750,9 @@ msgstr[1] "%(num)d libri - di %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Aggiornamenti di stato da {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Recensioni da {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citazioni da {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Commenti di {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "un nuovo utente registrato" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/ja_JP/LC_MESSAGES/django.mo b/locale/ja_JP/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..392b4e3207 Binary files /dev/null and b/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/locale/ja_JP/LC_MESSAGES/django.po b/locale/ja_JP/LC_MESSAGES/django.po new file mode 100644 index 0000000000..45ae2daace --- /dev/null +++ b/locale/ja_JP/LC_MESSAGES/django.po @@ -0,0 +1,7720 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Japanese\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ja\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "1日" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "1週間" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "1ヶ月" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "有効期限なし" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "無制限" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "パスワードが間違っています" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "パスワードが一致しません" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "パスワードが正しくありません" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "読み終えた日は読み始めた日より前にすることはできません。" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "読み止めた日は読み始めた日より前にすることはできません" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "読書の中断日を未来の日付にすることはできません" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "読書の完了日を未来の日付にすることはできません" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "ユーザー名またはパスワードが正しくありません" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "このユーザー名のユーザーはすでに存在します" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "このメールのユーザーはすでに存在します。" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "コードが正しくありません" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "このドメインはブロックされています。これがエラーだと思われる場合は管理者に問い合わせてください。" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "このファイルタイプのリンクは既にこの本に追加されています。表示されていない場合は、ドメインが保留中です。" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "リスト順" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "本のタイトル" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "評価" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "並び順" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "昇順" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "降順" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "標準" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "成功" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "リンク" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "警告" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "危険" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "自動生成されたレポート" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "保留中" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "自己削除" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "モデレーターによる休止" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "モデレーターによる削除" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "ドメインブロック" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "オーディオブック" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "電子書籍" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "グラフィックノベル" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "ハードカバー" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "ペーパーバック" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "コメント" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "レビュー" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "フォロー" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "ブロック" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "連合" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "ブロック中" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s は有効なリモートIDではありません" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s は有効なユーザー名ではありません" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "ユーザー名" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "このユーザー名のユーザーはすでに存在します。" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "公開" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "未収載" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "フォロワー" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "非公開" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "アクティブ" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "完了" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "中断" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "インポートを停止しました" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "本の読み込みエラー" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "該当する本が見つかりませんでした" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "無料" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "購入可能" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "貸出可能" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "承認済" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "解決済みの通報" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "凍結したユーザー" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "凍結を解除したユーザー" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "削除したユーザーアカウント" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "ブロックしたドメイン" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "承認したドメイン" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "削除したアイテム" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "レビュー" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "コメント" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "引用" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "他のすべて" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "ホームタイムライン" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "ホーム" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "本のタイムライン" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "本" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "English (英語)" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català(カタルーニャ語)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (ドイツ語)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (エスペラント)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (スペイン語)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (バスク語)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (ガリシア語)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (イタリア語)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (フィンランド語)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (フランス語)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (リトアニア語)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Nederlands (オランダ語)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (ノルウェー語)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (ポーランド語)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil(ブラジルポルトガル語)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (ヨーロッパポルトガル語)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (ルーマニア語)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "スウェーデン語 (Swedish)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (簡体字中国語)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (繁体字中国語)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "権限がありません" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "見つかりませんでした" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "リクエストしたページは存在しないようです!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "おっと!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "サーバーエラー" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "何か問題が発生しました!申し訳ありません。" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "概要" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "%(site_name)sへようこそ!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s は、読者のための独立した自発的なコミュニティ BookWyrm の一部です。 BookWyrm ネットワーク内のどのユーザともシームレスに交流できますが、このコミュニティは唯一です。" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)sは %(site_name)s で最も愛されている本で、平均評価は5段階中%(rating)sです。" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "%(site_name)s ユーザでは、 %(title)s を読みたがっている人が他のどの本よりも多くいます。" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "%(site_name)s では、 %(title)s が最も評価が分かれています。" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "読書を記録し、本について話し、レビューを書き、次に読む本を見付けましょう。広告一切なしで大企業に支配されないコミュニティ志向の BookWyrm は、小さく個人的なものに保たれている、人の使いやすいソフトウェアです。機能リクエスト、バグ報告、壮大な夢などをお持ちでしたら、プロジェクトに参加してあなたの声をお聞かせください。" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "管理者の紹介" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "%(site_name)s のモデレータと管理者はサイトを維持し、行動規範の遵守を徹底し、ユーザがスパムや悪意ある行動を通報したとき対処します。" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "モデレーター" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "管理者" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "ダイレクトメッセージを送信" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "行動規範" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "アクティブユーザー:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "投稿数:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "ソフトウェアのバージョン:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "%(site_name)s について" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "プライバシーポリシー" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "本で見る %(year)s年" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "本で見る %(year)s年" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "%(display_name)s 読書の1年" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "このページを共有" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "アドレスをコピー" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "コピーしました!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "共有状態: URL限定公開" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "URL を知っている人であればこのページを誰でも見ることができます。" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "ページを非公開にする" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "共有状態: 非公開" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "このページは非公開で、あなたのみが見ることができます。" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "ページを公開する" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "ページを非公開にすると、古い URL ではこのページにアクセスできなくなります。もう一度ページを公開すると、新しい URL が生成されます。" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "残念ながら %(display_name)s は%(year)s年に一冊も本を読み終えませんでした。" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "%(year)s年、 %(display_name)s は%(books_total)s冊
    合計%(pages_total)sページを読みました!" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "すごい!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "1冊あたり%(pages)sページです。" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "最も短かった読み物……" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "著者:" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s ページ" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "……それから、最も長い読み物" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "%(display_name)s は%(year)s年に%(goal)s冊の本を読むという目標を立て、
    目標の %(goal_percent)s%% を達成しました。" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "その調子!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "%(display_name)s は%(ratings_total)s個の評価をし、
    その平均は%(rating_average)sでした。" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "最高評価のレビュー" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "評価: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "%(display_name)s が %(year)s 年に読んだすべての本" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "著者を編集" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "著者の詳細" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "別名:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "出生日:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "逝去日:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "外部リンク" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Wikipedia" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "ウェブサイト" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "ISNIレコードを表示" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "ISFDBで表示" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "データを読み込む" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "OpenLibraryで表示" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Inventaireで表示" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "LibraryThingで表示" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Goodreadsで表示" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "%(name)s による本" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "著者を編集:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "追加日:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "更新日:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "最終編集者:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "メタデータ" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "名前:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "複数ある場合はコンマで区切ってください。" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "個人紹介:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Wikipediaリンク:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "ウェブサイト:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "出生日:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "逝去日:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "著者識別子" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Openlibrary キー:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "InventaireのID:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Librarythingのキー:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Goodreadsのキー:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "ISFDB:" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "保存" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "キャンセル" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "データのロードでは、 %(source_name)s に接続し、この著者に関するここにないメタデータを取得します。既存のメタデータは上書きされません。" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "確認" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "リモートの情報源に接続できませんでした。" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "本を編集" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "クリックしてカバーを追加" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "カバーを読み込めませんでした" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "クリックして拡大" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(%(review_count)s 件のレビュー)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "説明を追加" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "概要:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s 個の版" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "次の本棚に既に追加されています:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "この本の別の版があなたの本棚 %(shelf_name)s にあります。" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "あなたの読書活動" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "読了日を追加" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "あなたはこの本の読書活動をしていません。" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "あなたのレビュー" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "あなたのコメント" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "あなたの引用" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "テーマ" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "場所" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "リスト" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "リストに追加" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "追加" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "ISBNをコピー" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBNをコピーしました!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLCナンバー:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "Audible ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "ISFDB ID:" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "カバー画像を追加" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "カバー画像をアップロード:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "ブックカバーのプレビュー" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "閉じる" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "\"%(book_title)s\"を編集" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "本を追加" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "本の保存に失敗しました。詳細については、以下のエラーを確認してください。" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "この本の情報を確認する" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "\"%(name)s\"は以下の著者のいずれかですか?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "%(book_title)s の著者" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "%(alt_title)s の著者" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "isni.org で詳細を見る" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "これは新しい著者です" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "新しい著者を作成: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "これは既存の作品の版ですか?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "これは新しい作品です" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "戻る" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "タイトル:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "サブタイトル:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "シリーズ:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "シリーズ番号:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "言語:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "テーマ:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "テーマを追加する" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "テーマを削除する" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "別のテーマを追加する" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "出版" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "出版社:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "初版の出版日:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "出版日:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "著者" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "%(name)s を削除" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "%(name)sの著者ページ" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "著者を加える:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "著者を加える" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Jane Doe" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "別の著者を加える" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "カバー" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "物理的なプロパティ" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "フォーマット:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "フォーマットの詳細:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "ページ数:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "書籍識別子" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "OpenlibraryのID:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "%(book_title)s の版" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "お探しの版が見つかりませんか?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "別の版を加える" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "全て" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "言語:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "版を検索する" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "ファイルのリンクを追加" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "不明なドメインからのリンクは、追加される前にモデレーターから承認される必要があります。" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "ファイル形式:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "リンクの編集" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "\"%(title)s\"へのリンク" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "追加した人" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "ファイル形式" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "ドメイン" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "状態" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "アクション" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "不明なユーザー" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "スパムを報告" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "この本へのリンクがありません。" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "ファイルへのリンクを追加" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "ファイルのリンク" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "コピーする" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "リンクがありません" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "BookWyrmから離れる" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "続ける" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "フォーマット: %(format)s ページ数: %(pages)s" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "ページ数: %(pages)s" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "言語: %(languages)s" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "%(date)s に %(publisher)s によって出版されました。" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "出版社: %(publisher)s" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "出版日: %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "評価" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "投稿を編集" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "メールアドレスの確認" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "あなたのメールアドレスを確認してください。" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "アカウント登録に使用したメールアドレスに確認コードを送信しました。" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "申し訳ありません!コードが見つかりませんでした。" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "確認用コード:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "送信" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "コードが見つかりませんか?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "確認メールを再送信" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "メールアドレス:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "リンクを再送信" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "コミュニティ" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "ローカルのユーザー" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "連合コミュニティ" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "ディレクトリ" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "あなたのプロフィールを他のBookWyrmユーザーが見つけられるようにします。" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "ディレクトリに参加" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "プロフィ─ル設定 で、いつでもディレクトリから抜ける事ができます。" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "並び順" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "最近活動していたユーザー" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "おすすめのユーザー" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "ロックされたアカウント" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "フォローしているフォロワー" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "あなたの棚にある本" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "投稿" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "最後の活動" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "ユーザーの種類" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "BookWyrmユーザー" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "全ての既知のユーザー" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "%(username)sさんが%(book_title)sをレビューしました" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "ディスカバー" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "%(site_name)s コミュニティの新着情報をチェックしましょう" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "投稿を表示" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "メールを確認する" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "あなたのメールを確認して下さい" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "ようこそ" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "メール設定" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "あなたは %(site_name)s! へ招待されています!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "登録する" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "あなたは %(site_name)s に招待されました! 下のリンクをクリックしてアカウントを作成してください。" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "%(site_name)s についてもっと詳しく:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "@%(reporter)s がモデレーションによりリンクを通報しました。" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "@%(reporter)s がモデレーションにより @%(reportee)s の行動を通報しました。" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "通報を見る" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "%(site_name)sへの新しい通報" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "%(site_name)s におけるパスワードのリセットをリクエストしました。以下のリンクをクリックして新しいパスワードを設定してからアカウントにログインしてください。" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "パスワードのリセット" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "パスワードのリセットをリクエストしていない場合は、このメールを無視してください。" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "%(site_name)s のパスワードをリセット" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "これはテストメールです。" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "メールをテスト" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "%(site_name)s のホームページ" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "管理者へのお問い合わせ" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "BookWyrmに参加" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "%(username)sとのDM" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "ダイレクトメッセージ" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "全てのメッセージ" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "現在メッセージはありません。" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "現在アクティビティはありません!ユーザーをフォローして開始してください。" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "または、他のステータスタイプを有効にしてみてください" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s の読書目標" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "プロフィールページから、読書目標をいつでも設定または変更できます。" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "更新情報" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "あなたの本" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "現在本はありません!始めるために本を検索してみてください。" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "GoodReadsのような他のサービスからのブックデータはありますか?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "読書履歴をインポート" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "おすすめのアカウント" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "提案ユーザーを表示しない" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "ディレクトリを表示" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "年末は、この12ヶ月で読んだすべての本を振り返るのに最適な時期です。何ページ読みましたか?今年一番の評価だった本は?さまざまな統計をまとめました!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "%(year)s年のあなたの統計を見ましょう!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "%(book_title)s を読みましたか?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "あなたの本に追加" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "あとで読む" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "読書中" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "読む" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "読むのをやめた" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "何を読んでいますか?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "本を検索" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "「%(query)s」に該当する本は見つかりませんでした" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "%(site_name)s を使い始めると、本を追加できます。" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "検索" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "おすすめの本" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "検索結果" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "%(site_name)s で人気" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "本が見つかりませんでした" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "保存して続ける" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "ようこそ" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "使い始めるにあたって、最初のステップがいくつかあります。" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "プロファイルを作成" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "本を追加する" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "友達を探す" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "この手順をスキップ" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "終了" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "表示名:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "概要:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "あなたについて、もうちょっと" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "アバター:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "フォロワーを手動で承認する:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "このアカウントを提案されたユーザとして表示する:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "あなたのアカウントはディレクトリに表示され、他の BookWyrm ユーザーにおすすめされることがあります。" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "他の BookWyrm インスタンスや Mastodon のような連合サービスのユーザーをフォローすることができます。" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "ユーザーを検索" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "「%(query)s」に該当するユーザーは見つかりませんでした" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "グループを作成" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "%(username)s によって管理されています" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "このグループを削除しますか?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "この操作を取り消すことはできません" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "削除" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "グループを編集する" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "グループ名:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "グループについて:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "グループを削除" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "このグループのメンバーは、グループによるキュレーションリストを作成することができます。" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "リストを作成" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "このグループにはリストがありません" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "グループを編集" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "追加するユーザーを検索" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "グループから退出する" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "あなたをフォローしています" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "新しいメンバーを加えましょう!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s人の相互フォロワー" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "あなたの本棚のうち%(shared_books)s冊を読んでいます" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "「%(user_query)s」の潜在的なメンバーが見つかりませんでした。" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "管理者" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "グループが見つかりませんでした。" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "ここは本のホームページです。ここで何ができるか見てみましょう!" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "本のページ" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "ツアーを終了する" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "次へ" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "ここでは本の読書状態を設定できます。ボタンを押して次の段階に移行したり、ドロップダウンボタンから読書状態を選択して設定できます。" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "読書状態" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "ここでは手動で日付を設定することもできます。先の方法で読書状態を変更するのとは異なり、手動で日付を追加すると本は読了読んでいるの本棚に自動で追加されません。" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "毎年読み直すお気に入りがありますか?大丈夫です——同じ本に複数の読了日を追加できます😀" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "本には様々な形式や言語で複数の版があるかもしれません。どの版を使うか選択できます。" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "他の版" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "ここではレビュー、コメント、引用を投稿できます。" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "意見をシェアする" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "この本を読み終えたら、レビューを投稿できます。☆による評価は省略できます。" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "レビューを投稿する" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "この本について思ったことを簡単なコメントで共有できます" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "コメントを投稿する" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "ちょうどすばらしい文章に出会ったところですか?引用をシェアして世界に届けましょう!" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "引用を共有する" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "レビューやコメントが未読の人の体験を台無しにしてしまうかもしれないなら、ネタバレ注意 で投稿を隠すことができます。" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "ネタバレ注意" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "投稿を閲覧できる人の範囲を選択しましょう。投稿範囲は 公開 (全員が閲覧可能)、未収載 (誰でも閲覧可能ですが、公開フィードやディスカバリーページには流れません)、フォロワー (あなたのフォロワーのみが閲覧可能)、または非公開 (あなたのみが閲覧可能) から選択できます。" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "投稿範囲" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "一部の電子書籍は外部から無料でダウンロードできることがあり、そういったものはここに表示されます。" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "ダウンロードリンク" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "ドロップダウンメニューから あなたの本 を選択すると、ツアーを続行します。" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "はい" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "グループのページへようこそ! ここでは、ユーザーの追加と削除、ユーザーによるキュレーションリストの作成、グループの詳細の編集ができます。" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "あなたのグループ" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "この検索ボックスを使用して、グループに参加するユーザー検索してください。 現在は、ユーザーは同じ Bookwyrm インスタンスのメンバーであり、かつグループオーナーが招待する必要があります。" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "ユーザーを探す" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "グループメンバーがここに表示されます。グループのオーナーにはスターマークが付いています。" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "グループのメンバー" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "グループ一覧" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "ツアーを終了する" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "ガイドツアー" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "今は結構です" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "はい、お願いします!" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "この検索ボックスを利用して本、ユーザー、またはリストを検索します。" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "検索ボックス" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "お使いのデバイスのカメラを使用してISBNバーコードをスキャンして本の記録を検索する - 書店や図書館にいるときに最適です!" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "バーコードリーダー" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "ナビゲーションバー" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "タイムライン" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "通知" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "プロフィールと設定メニュー" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "新しいリストを作成" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "リストの公開範囲" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "リストのキュレーション" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "検索しています" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "探している本が表示されていない場合は、Open LibraryやInventaireなどの他のソースからより多くのレコードを読み込んでみてください。" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "レコードをさらに読み込む" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "もう一度検索する" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "まだブックが見つからない場合は、手動でレコードを追加できます。" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "手動でレコードを追加する" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "ツアーを続ける" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "あなたの本" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "カスタム本棚の追加" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "その他のサービスからのインポート" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "グループ" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "新しいグループを作りましょう!" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "グループを作成しています" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "グループの公開範囲" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "グループを保存" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "ユーザーのプロフィール" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "読書目標" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "本を探す" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "有効なCSVファイルではありません" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "平均して、最近のインポートでは %(hours)s 時間かかっています。" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "データ元:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "Goodreads (CSV)" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "Storygraph (CSV)" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "LibraryThing (TSV)" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "OpenLibrary (CSV)" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "Calibre (CSV)" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "Goodreadsのデータは、あなたのGoodreadsアカウントのインポート/エクスポートのページ からダウンロードできます。" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "データファイル:" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "レビューを含める" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "インポート" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "最近のインポート" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "作成日" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "最終更新日" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "項目" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "最近のインポートはありません" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "インポートステータス" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "再試行ステータス" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "インポート" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "インポートを開始しました:" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "処理中" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "更新" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "インポートを停止" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "%(display_counter)s 個のアイテムには手動で承認が必要です。" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "項目をレビュー" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "%(display_counter)s 個のアイテムのインポートに失敗しました。" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "失敗した項目の表示とトラブルシューティング" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "列" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "タイトル" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "ISBN" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "Openlibraryのキー" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "著者" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "本棚" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "本" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "インポートプレビューは利用できません。" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "レビューが必要な項目はありません" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "インポートされたレビューを表示" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "インポートされました" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "手動のレビューが必要です" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "再試行" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "このインポートはすでにサポートされていない古いフォーマットです。このインポートから不足している項目をトラブルシューティングしたい場合は、下のボタンをクリックしてインポート形式を更新してください。" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "インポートを更新" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "ユーザープロフィール" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "トラブルシューティングをインポート" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "提案を承認すると、提案された本が本棚に永久に追加され、読書の日付、レビュー、評価がその本に関連付けられます。" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "承認する" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "拒否する" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "失敗したアイテム" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "トラブルシューティング" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "インポートを再試行すると、以下のような場合に不足している項目を修正できます。" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "合計" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "アカウントを作成" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "最近追加された本" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "脱中央集権的" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "フレンドリー" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "アンチ・コーポレート" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "%(name)s に参加する" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "あなたのアカウント" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "ログイン" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "ログイン" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "成功!メールアドレスを確認しました" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "ユーザー名:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "パスワード:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "パスワードをお忘れですか?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "このサイトの詳細" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "パスワード(確認用):" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "パスワードをリセットするためのリンクがあなたのメールアドレスに送信されます。" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "アカウントを再開する" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "アカウントを再開する" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "%(site_name)s を検索" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "バーコードをスキャン" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "メインのナビゲーションメニュー" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "パスワード" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "参加する" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "\"%(title)s\"をリストに追加" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "このリストに \"%(title)s\" を提案する" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "提案" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "保存を取り消す" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "%(username)sさんが作成し、%(groupname)sによって管理されています" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "%(username)sさんが作成およびキュレートしました" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "%(username)sさんが作成しました" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "キュレート" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "保留中の本" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "%(username)s の発言:" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "このリストを削除しますか?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "リストを編集" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "現在リストは空です。" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "リストのキュレーション:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "プライベート" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "リストにブックを追加および削除できるのはあなただけです" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "誰でもあなたの承認を条件に、本を提案することができます。" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "公開" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "誰でもリストに本を追加することができます。" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "グループ" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "グループのメンバーは、リストに本を追加および削除することができます" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "グループを選ぶ" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "グループを選ぶ" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "あなたはまだグループを持っていません!" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "グループを作成" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "リストを削除" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "このリストへの本の提案に成功しました!" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "このリストへの本の追加に成功しました!" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "このリストには現在何もありません。" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "メモを編集" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "メモを加える" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "%(username)sによって追加されました" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "リストの位置" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "設定" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "削除" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "リストの並び替え" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "項目順" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "本を追加する" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "本を提案する" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "検索" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "検索をクリア" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "クエリ \"%(query)s\" に一致する本は見つかりませんでした" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "このリストをウェブサイトに埋め込む" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "埋め込みコードをコピー" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "保存しました" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "リストは見つかりませんでした。" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "あなたのリスト" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "全てのリスト" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "保存したリスト" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "ログアウト" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "インポート が完了しました。" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "は、あなたのグループ \"%(group_name)s\" から追放されました" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "あなたは \"%(group_name)s\" のグループから追放されました" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "CW" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "さんが %(group_name)s の公開範囲を変更しました" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "さんが %(group_name)s のグループ名を変更しました" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "さんが %(group_name)s の説明を変更しました" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "通知を削除" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "全て" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "メンション" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "全ての通知を既読済みです!" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "%(account)s をフォローしている最中にエラーが発生しました" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "%(account)s をブロックしました" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "%(account)s さんがあなたをブロックしました" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "あなたは既に %(account)s をフォローしています" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "あなたは既に %(account)s へのフォローをリクエストしています" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "Fediverseで %(username)s をフォロー" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "%(username)s をBookWyrm、MastodonまたはPleromaなどの他のFediverseアカウントからフォローしましょう。" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "以下のアカウントからフォロー:" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "フォロー!" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "Fediverseでフォローする" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "このリンクはポップアップウィンドウで開きます" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "%(sitename)s にログイン" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "%(sitename)s からのフォロー中のエラー" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "%(sitename)s からのフォロー" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "%(username)s をフォロー" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "%(display_name)s! をフォローしています!" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "ブロックしたユーザー" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "現在ブロックしたユーザーはいません。" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "パスワードの変更" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "パスワードの変更に成功しました" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "現在のパスワード:" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "新しいパスワード:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "アカウントを削除" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "アカウントを停止" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "あなたのアカウントは非表示になります。いつでもログインすることができ、アカウント利用を再開できます。" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "アカウントを停止する" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "アカウントを完全に削除する" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "アカウントの削除を取り消すことはできません。あなたのユーザーネームは、今後アカウント登録の際に利用できなくなります。" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "二段階認証の無効" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "二段階認証の無効化" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "二段階認証を無効にすると、あなたのユーザーネームとパスワードを持つ者なら誰でもあなたのアカウントにログインできるようになります。" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "二段階認証を止める" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "プロフィールを編集" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "プロフィール" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "表示" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "プライバシー" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "おすすめユーザーを表示する" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "このアカウントをおすすめユーザとして表示する" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "あなたのアカウントはディレクトリに表示され、他のBookWyrmユーザーにおすすめされることがあります。" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "望ましいタイムゾーン: " + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "テーマ:" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "フォロワーを手動で承認する" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "プロフィールのフォロワーとフォローを非表示にする" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "デフォルトの投稿範囲:" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "ファイルをダウンロード" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "アカウント" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "データ" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "他ユーザーとの関係" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "二段階認証" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "二段階認証の設定の更新に成功しました" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "これらのコードをどこか安全な場所に書き留めるか、コピー&ペーストしてください。" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "これらのコードを必ず順番に使用してください。これ以降、コードは再び表示されません。" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "二段階認証はあなたのアカウントで有効です。" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "あなたの認証アプリに万が一アクセスできない場合に使用する、バックアップコードを生成できます。 新しいコードを生成すると、過去に生成されたどのバックアップコードも利用できなくなります。" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "バックアップコードを生成" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "認証アプリでQRコードをスキャンし、アプリに表示されたコードを以下のフォームに入力してアプリが設定されているか確認してください。" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "セットアップキーを使う" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "アカウント名:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "コード:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "二段階認証アプリからコードを入力:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "二段階認証(2FA) を利用することで、あなたのアカウントをより安全にすることができます。AuthyGoogle Authenticator、またはMicrosoft Authenticatorのようなスマートフォンのアプリを利用して、ログインする度にワンタイムコードを入力する必要があります。" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "パスワードを確認して二段階認証の設定を始めてください。" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "二段階認証を設定" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "これらの読書日を削除しますか?" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "\"%(title)s\"の読書日を更新" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "読み始めた日" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "進捗" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "読み終えた日" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "進捗状況:" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "読了" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "読書開始" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "読書日を編集" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "これらの読書日を削除" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "\"%(title)s\"の読書日を追加" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "通報" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "\n" +" バーコードをスキャン\n" +" " + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "カメラへのアクセスを要求しています..." + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "カメラに対して、本のバーコードをスキャンするためのアクセスを許可してください。" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "カメラにアクセスできませんでした" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "読み込み中..." + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "本のバーコードをカメラに合わせてください。" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "ISBNをスキャンしました" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "本を検索:" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "本をインポート" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "その他のカタログから結果を読み込む" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "本を手動で追加" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "本をインポートまたは追加するにはログインしてください。" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "検索クエリ" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "検索タイプ" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "ユーザー" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "\"%(query)s\" に対する結果はありません" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "%(result_count)s 件見つかりました" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "お知らせ" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "編集" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "お知らせ" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "公開範囲:" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "アクティブ:" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "お知らせを作成" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "プレビュー" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "アクティブ" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "非アクティブ" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "お知らせはありません" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "お知らせを編集" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "お知らせの内容" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "詳細:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "イベントの日付:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "表示設定" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "カラー:" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "自動モデレーションルール" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "スケジュール:" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "有効:" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "スケジュールを削除" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "スケジュールスキャン" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "ルールの追加に成功しました。" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "ルールを追加" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "ルールを追加" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "現在のルール" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "ルールを表示" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "ルールを削除" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "キュー" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "受信箱" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "画像" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "メールアドレス" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "ID" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "タスク名" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "ランタイム" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "アップタイム:" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "エラー" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "連合しているインスタンス" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "ダッシュボード" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "合計ユーザー" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "インスタンスのアクティビティ" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "投稿数:" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "あなたのインスタンスには行動規範がありません。" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "インスタンスにプライバシーポリシーがありません。" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "ドメインを追加" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "ドメイン:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "メールアドレスのブロックリスト" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "オプション" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "Eメール設定" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "テストメールの送信に成功しました。" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "メール送信者:" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "ホスト:" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "ホストユーザー:" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "ポート:" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "%(email)s にテストメールを送信" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "テストメールを送信" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "インスタンスを追加" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "ブロックリストのインポート" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "インスタンス:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "状態:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "ソフトウェア:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "バージョン:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "詳細" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "読書活動" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "ユーザー:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "全て表示" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "通報:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "メモ" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "メモはありません" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "このインスタンスのすべてのユーザーが無効化されます。" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "ブロック解除" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "このインスタンスのすべてのユーザーが再アクティブ化されます。" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "ブロックリストのインポート" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "成功!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "ブロックに成功しました:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "失敗:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "インスタンス名" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "最終更新日時" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "ソフトウェア" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "インスタンスが見つかりません" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "インポートを止めますか?" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "インポートを無効化" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "インポートを有効化" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "ユーザー" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "更新日" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "保留中のアイテム" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "招待リクエスト" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "招待" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "受理日" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "操作" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "承認済み" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "送信済み" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "招待を送信する" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "招待を再送信する" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "無視" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "取り消し" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "保留中の招待リクエストに戻る" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "無視された招待リクエストを表示" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "新しい招待を作成" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "有効期限:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "使用上限:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "招待を作成" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "有効期限" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "使用上限" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "使用された回数" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "アクティブな招待はありません" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "IPアドレスを追加" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "IPアドレスのブロックは慎重に使用し、IPアドレスの共有や変更が頻繁に行われるため、ブロックの使用は一時的なものにとどめることを検討してください。ご自身のIPをブロックすると、このページにアクセスできなくなります。" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "IPアドレス:" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "CIDR構文を使用して、IP範囲をブロックすることができます。" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "IPアドレスのブロックリスト" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "このIPアドレスからのトラフィックには、404エラーを返します。" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "アドレス" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "現在ブロックしているIPアドレスはありません" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "管理" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "ユーザーの管理" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "モデレーション" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "通報" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "システム" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "インスタンス設定" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "サイト設定" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "新規登録" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "テーマ" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "リンクを見る" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "現在ブロックしているドメインはありません" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "このドメインへのリンクがありません。" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "設定が保存されました" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "設定を保存できません" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "新規登録を許可する" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "デフォルトのアクセスレベル:" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "メールアドレスの確認をユーザーに要求する" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "(新規登録が可能な場合は推奨)" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "招待リクエストを許可する" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "招待リクエストの質問を設定する" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "質問:" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "新規登録が閉じられた時のテキスト:" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "通報に戻る" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "通報状態" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "投稿は削除されました" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "通報したリンク" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "モデレーションのアクティビティ" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "ドメインをブロック" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "@%(username)sからの通報" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "通報: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "通報: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "開く" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "通報は見つかりませんでした。" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "インスタンス情報" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "フッターのコンテンツ" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "インスタンス名:" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "インスタンスの説明:" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "短い説明:" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "joinbookwyrm.comでインスタンスがプレビューされるときに使用されます。HTMLやMarkdownは使用できません。" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "行動規範:" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "プライバシーポリシー:" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "ロゴ:" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "小さいロゴ:" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "ファビコン:" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "デフォルトテーマ:" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "サポートリンク:" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "サポートタイトル:" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "管理者のメールアドレス:" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "追加情報:" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "インスタンスのデフォルトテーマを設定" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "テーマの追加に成功しました" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "テーマ追加のやり方" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "コマンドラインであなたのサーバーの bookwyrm/static/css/themes ディレクトリにテーマファイルをコピーします。" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "./bw-dev compile_themes./bw-dev collectstatic を実行します。" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "アプリケーションの外観でファイルを利用できるようにするため、以下のフォームを利用してファイル名を追加します。" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "テーマを加える" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "テーマを保存できません" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "テーマ名" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "テーマのファイル名" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "利用可能なテーマ" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "ファイル" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "テーマを削除" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "ユーザーを完全に削除" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "%(username)sのアカウントを削除してもよろしいですか?この操作は元に戻せません。続行するには、パスワードを入力して削除を確認してください。" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "あなたのパスワード:" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "ユーザー: %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "削除したユーザー" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "ユーザーネーム" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "追加日" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "最後の活動" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "リモートインスタンス" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "ユーザープロフィールを表示" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "ローカル" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "リモート" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "ユーザー情報" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "メールアドレス:" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "(通報を見る)" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "追加日:" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "最後の活動日:" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "インスタンス情報" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "インスタンスを見る" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "完全に削除されました" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "ユーザーアクション" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "ユーザーを凍結" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "ユーザーの凍結を解除" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "アクセスレベル:" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "BookWyrmを設定" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "アカウントを作成" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "管理者キー:" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "モデレーションについて詳しく知る" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "インスタンス設定" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "設定" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "インスタンスのドメイン:" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "S3の利用:" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "デフォルトの表示言語:" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "ドメインとプロトコルを設定する最後のチャンスです。" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "インスタンスの設定は、サーバー上の .env ファイルで変更することができます。" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "インストールの手順を見る" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "インスタンスのセットアップ" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "Bookwyrmのインストール" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "ヘルプが必要ですか?" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "本棚を作成" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "本棚を編集" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "全ての本" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "本をインポート" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "本棚を編集する" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "本棚を削除する" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "この本棚は空です。" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "招待" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "招待を取り消す" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "%(username)s を追放" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "カバーなし" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "ブースト" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "ブーストを取り消す" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "引用" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "進捗:" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "ページ" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "パーセント" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "%(pages)s ページの内" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "返信" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "コンテンツ" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "ネタバレ警告を含める" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "ネタバレ/コンテンツへの警告:" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "ネタバレ注意!" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "コメント:" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "投稿" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "引用:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "引用元:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "ページ:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "パーセント:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "'%(book_title)s' のレビュー" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "レビュー:" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "いいね" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "いいねを取り消す" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "フィルター" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "フィルターが適用されました" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "フィルタをクリア" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "フィルターを適用" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "@%(username)s をフォロー" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "フォローリクエストを取り消す" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "@%(username)sのフォローを解除" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "フォローを解除" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "ドキュメント" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "%(site_name)s を%(support_title)sで支援する" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "BookWyrmのソースコードは自由に利用できます。また、GitHub でコントリビュートしたり、問題等を報告することができます。" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "評価なし" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "さんは%(title)sを評価しました: %(display_rating)s stars" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "%(year)s 年に読み終える本の数を目標として設定し、1年を通して進捗状況を記録しましょう。" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "読書目標:" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "本" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "読書目標の公開範囲:" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "フィードに投稿する" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "目標を作成" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "達成しました!" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "%(percent)s%% 読み終えました!" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "あなたが読んだのは %(goal_count)s 冊中、 %(read_count)s 冊です。" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "%(username)s は%(goal_count)s 冊の目標に対して、%(read_count)s 冊を読みました。" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "前へ" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "フォロワーのみ" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "評価" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "(任意)" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "よく考えてから決めてください!ユーザー名は変更できません。" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "新規登録" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "@%(username)s の投稿を通報" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "%(domain)s のリンクを通報" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "@%(username)s を通報" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "この通報内容は %(site_name)sのモデレーターにレビューのために送信されます。" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "この通報についての詳細:" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "本を移動する" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "読み始める" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "画像を新しいウィンドウで開く" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "ステータスを非表示" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "さんが%(book)sを評価しました:" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "さんが、 %(author_name)s著の%(book)s をレビューしました" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "さんが %(book)s をレビューしました" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "投稿を削除" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "投稿をブースト" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "投稿にいいね!する" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "その他のオプション" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "昇順で並び替える" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "降順で並び替える" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "さらに表示" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "表示を減らす" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "非アクティブ" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "二段階認証チェック" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "確認してログイン" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "二段階認証が利用可能です" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "ユーザー設定で二段階認証を設定することで、あなたのアカウントを守ることができます。 ログインする度にあなたのパスワードに加え、スマートフォンに表示されるワンタイムコードが必要となります。" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "%(username)sさんの本" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s 年の読書の進捗状況" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "目標を編集" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "あなたの %(year)s 年の本" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "%(username)s の %(year)s 年の本" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "あなたのグループ" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "グループ: %(username)s" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "フォローリクエスト" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "レビューとコメント" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "リスト: %(username)s" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "リストを作成" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "登録日 %(date)s" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "%(username)s にはフォロワーがいません。" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "フォロー" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s は他のユーザーをフォローしていません" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "まだレビューやコメントはありません!" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "プロフィールを編集" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "%(size)s 冊を全て表示" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "すべての本を表示" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "%(current_year)s 年の読書目標" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "ユーザーアクティビティ" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "RSSオプションを表示" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "RSSフィード" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "アクティビティはまだありません!" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "%(counter)s 人フォロー中" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "あなたがフォローしている %(mutuals_display)s 人のフォロワー" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "あなたがフォローしているフォロワーはいません" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "プロフィールなどを表示" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "%(title)s: %(subtitle)s" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "%(count)d 件の未読投稿を読み込む" + diff --git a/locale/ko_KR/LC_MESSAGES/django.mo b/locale/ko_KR/LC_MESSAGES/django.mo index 5aab5d85ba..0c149b9d0b 100644 Binary files a/locale/ko_KR/LC_MESSAGES/django.mo and b/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/locale/ko_KR/LC_MESSAGES/django.po b/locale/ko_KR/LC_MESSAGES/django.po index b7acabe2c7..5f3ec6d34a 100644 --- a/locale/ko_KR/LC_MESSAGES/django.po +++ b/locale/ko_KR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-02-08 05:53\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Korean\n" "Language: ko\n" @@ -33,56 +33,55 @@ msgstr "한 달" msgid "Does Not Expire" msgstr "만료기간 없음" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "무제한" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "잘못된 암호" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "암호가 일치하지 않음" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "잘못된 암호" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "" -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "" -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "" -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "" -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "이용자명 또는 암호 맞지 않음" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "이 이메일을 가진 이용자가 이미 있습니다." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "잘못된 코드" @@ -90,7 +89,7 @@ msgstr "잘못된 코드" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "이 도메인은 차단되었습니다. 오류라고 생각되면 관리자에게 문의하세요." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" @@ -102,8 +101,8 @@ msgstr "나열 순서" msgid "Book Title" msgstr "책제목" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "별점" @@ -145,8 +144,8 @@ msgstr "위험" msgid "Automatically generated report" msgstr "자동 생성된 보고서" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "중재자가 삭제" msgid "Domain block" msgstr "도메인 차단" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "오디오북" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "전자책" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" -msgstr "그래픽 노블" +msgstr "만화" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "양장제본" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "무선제본" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "코멘트" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "서평" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "인용" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "팔로우" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "차단하기" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "연합" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "" msgid "%(value)s is not a valid username" msgstr "" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "이용자명" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "" -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "" msgid "Public" msgstr "공개" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "공개" msgid "Unlisted" msgstr "미등재" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "미등재" msgid "Followers" msgstr "팔로워" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "팔로워" msgid "Private" msgstr "비공개" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "활성화" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "완료" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "멈춤" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "가져오기 멈춤" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "책 불러오는 중 오류" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "실패함" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "비매품" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "구매 가능" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "대여할 수 있음" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "승인" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "코멘트" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "해결된 제보" @@ -363,123 +429,158 @@ msgstr "허용한 도메인" msgid "Deleted item" msgstr "삭제한 항목" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "서평" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "코멘트" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "인용구" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "그 밖의 것들" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "홈 타임라인" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "홈" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "도서 타임라임" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "도서" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Catalan)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (German)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Spanish)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Basque)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galician)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italian)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Korean)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finnish)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (French)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lithuanian)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "네덜란드 (Dutch)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norwegian)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polish)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Brazilian Portuguese)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (European Portuguese)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Romanian)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Swedish)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (우크라이나)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Simplified Chinese)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Traditional Chinese)" @@ -517,9 +618,7 @@ msgid "The file you are uploading is too large." msgstr "" #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." msgstr "" #: bookwyrm/templates/500.html:4 @@ -616,7 +715,7 @@ msgid "Statuses posted:" msgstr "게시한 기록:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "소프트웨어 버전:" @@ -648,7 +747,7 @@ msgstr "%(year)s년의 책들" #: bookwyrm/templates/annual_summary/layout.html:47 #, python-format msgid "%(display_name)s’s year of reading" -msgstr "%(display_name)s의 올 해 독서" +msgstr "%(display_name)s의 올 해 독서" #: bookwyrm/templates/annual_summary/layout.html:53 msgid "Share this page" @@ -700,7 +799,7 @@ msgstr "" #, python-format msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" -msgstr[0] "%(year)s년 한 해 동안, %(display_name)s 님은 %(books_total)s권을 읽었고
    이는 총 %(pages_total)s쪽에 달합니다!" +msgstr[0] "%(year)s년 한 해 동안, %(display_name)s 님은 %(books_total)s권을 읽었고
    이는 총 %(pages_total)s쪽에 달합니다!" #: bookwyrm/templates/annual_summary/layout.html:124 msgid "That’s great!" @@ -724,12 +823,12 @@ msgstr "" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 msgid "by" -msgstr "기준" +msgstr "저자" #: bookwyrm/templates/annual_summary/layout.html:163 #: bookwyrm/templates/annual_summary/layout.html:184 @@ -802,44 +901,48 @@ msgid "Wikipedia" msgstr "위키백과" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "웹사이트" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "ISNI 레코드 보기" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "ISFDB에서 보기" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "데이터 불러오기" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "OpenLibrary 자료 보기" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Inventaire 자료 보기" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "LibraryThing 자료 보기" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Goodreads 자료 보기" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "" @@ -876,8 +979,8 @@ msgid "Name:" msgstr "이름:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "쉼표로 값을 구분합니다." @@ -889,50 +992,54 @@ msgstr "저자소개:" msgid "Wikipedia link:" msgstr "위키피디아 링크:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "웹사이트:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "생일:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "작고일:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "저자 식별자" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary key:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything key:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads key:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -940,7 +1047,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -954,14 +1061,14 @@ msgstr "ISNI:" msgid "Save" msgstr "저장" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -971,6 +1078,7 @@ msgstr "저장" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -988,98 +1096,102 @@ msgstr "" #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "확정" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "" -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "책 수정" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" -msgstr "클리하여 표지 추가" +msgstr "클릭하여 표지 추가" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "표지 불러오기 실패" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "확대하려면 클릭" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "설명 추가" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "설명:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s개의 판" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" -msgstr "" +msgstr "책 꽂아둔 곳:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "" -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" -msgstr "내 읽기 활동" +msgstr "내 독서 활동" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "읽은 날짜 추가" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." -msgstr "" +msgstr "이 책에 관한 독서 활동이 없어요." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "내 서평" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "내 코멘트" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "내 인용" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "화제" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "장소" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1087,18 +1199,18 @@ msgstr "장소" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "목록" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "목록에 추가" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1121,40 +1233,50 @@ msgid "Copied ISBN!" msgstr "ISBN 복사!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC Number:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "표지 추가" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "표지 올려두기" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "URL에서 책표지 불러오기" @@ -1228,7 +1350,7 @@ msgid "This is a new work" msgstr "새 작품" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1281,125 +1403,129 @@ msgstr "뒤로" msgid "Title:" msgstr "제목" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "책제목 정렬:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "부제목" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "총서" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "총서편차:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "언어:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "화제:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "화제 추가" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "화제 제거" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "그 밖의 화제 추가" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "출판물" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "발행처:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "최초 발행일:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "발행일:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "저자" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "%(name)s 제거" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "저자 추가:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "저자 추가" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "신원 미상" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "그 밖의 저자 추가" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "표지" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "제본 정보" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "포맷:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "포맷 상세:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "쪽 수:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "책 식별자" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "OpenLibrary ID:" @@ -1427,7 +1553,7 @@ msgid "Any" msgstr "모두" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "언어:" @@ -1488,12 +1614,15 @@ msgid "Domain" msgstr "도메인" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1505,8 +1634,8 @@ msgstr "상태" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1552,8 +1681,8 @@ msgstr "BookWyrm 떠나기" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "계속" @@ -1609,7 +1738,19 @@ msgstr "정리안된 책" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "" -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "서평 편집" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "인용 편집" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "코멘트 편집" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "상태 수정" @@ -1636,7 +1777,7 @@ msgstr "확인 코드" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "제출" @@ -1702,7 +1843,7 @@ msgstr "" #: bookwyrm/templates/feed/summary_card.html:14 #: bookwyrm/templates/snippets/announcement.html:31 msgid "Dismiss message" -msgstr "메시지 해제" +msgstr "메시지 그만 보이기" #: bookwyrm/templates/directory/sort_filter.html:5 msgid "Order by" @@ -1710,7 +1851,7 @@ msgstr "" #: bookwyrm/templates/directory/sort_filter.html:9 msgid "Recently active" -msgstr "" +msgstr "최근에 활동" #: bookwyrm/templates/directory/sort_filter.html:10 msgid "Suggested" @@ -1718,12 +1859,12 @@ msgstr "제안" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1783,17 +1924,17 @@ msgstr "" #: bookwyrm/templates/discover/card-header.html:27 #, python-format msgid "%(username)s reviewed %(book_title)s" -msgstr "" +msgstr "%(username)s 독자의 %(book_title)s 서평" #: bookwyrm/templates/discover/card-header.html:31 #, python-format msgid "%(username)s commented on %(book_title)s" -msgstr "%(username)s 님의 %(book_title)s 코멘트" +msgstr "%(username)s 독자의 %(book_title)s 주석" #: bookwyrm/templates/discover/card-header.html:35 #, python-format msgid "%(username)s quoted %(book_title)s" -msgstr "%(username)s 님의 %(book_title)s 인용" +msgstr "%(username)s 독자의 %(book_title)s 인용" #: bookwyrm/templates/discover/discover.html:4 #: bookwyrm/templates/discover/discover.html:10 @@ -1842,8 +1983,8 @@ msgstr "" #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "%(site_name)s에서 호스트하는 BookWyrm" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1861,7 +2002,7 @@ msgstr "바로 참여하기" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." +msgid "Learn more about %(site_name)s." msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 @@ -1962,7 +2103,7 @@ msgstr "모든 메시지" #: bookwyrm/templates/feed/direct_messages.html:22 msgid "You have no messages right now." -msgstr "" +msgstr "지금은 받은 메시지가 없습니다." #: bookwyrm/templates/feed/feed.html:55 msgid "There aren't any activities right now! Try following a user to get started" @@ -2038,19 +2179,19 @@ msgid "Add to your books" msgstr "내 도서 추가" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "읽을 것" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "읽는 중" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2059,7 +2200,7 @@ msgid "Read" msgstr "읽음" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "읽다 멈춘 것" @@ -2092,7 +2233,7 @@ msgstr "" #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "검색" @@ -2742,6 +2883,7 @@ msgstr "" #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "그룹" @@ -2855,11 +2997,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "최근 가져오기에 걸린 시간은 평균 %(hours)s시간입니다." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "최근 가져오기에 걸린 시간은 평균 %(minutes)s분입니다." @@ -2885,69 +3029,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Goodreads 데이터는 계정의 가져오기/내보내기t페이지에서 내려받을 수 있습니다." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "데이터 파일:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "서평 포함" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "가져온 서평의 개인정보처리 설정" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "가져오기" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "" -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "" -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" -msgstr "" +msgstr "최근의 가져온 작업" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" -msgstr "" +msgstr "만든 날짜" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" -msgstr "최근 갱신일" +msgstr "갱신 날짜" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "항목" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "최근 가져온 내역 없음." @@ -2971,20 +3127,24 @@ msgid "Imports" msgstr "가져오기" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "가져오기 시작됨:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "진행 중" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "새로고침" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "가져오기 중단" @@ -3000,12 +3160,14 @@ msgid "Review items" msgstr "항목 검토" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." msgstr[0] "%(display_counter)s개 항목을 가져오지 못했습니다." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "실패한 항목을 살피고 문제해결하기" @@ -3014,12 +3176,14 @@ msgid "Row" msgstr "열" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "책제목" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3028,8 +3192,8 @@ msgid "Openlibrary key" msgstr "OpenLibray 키" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "저자" @@ -3037,13 +3201,9 @@ msgstr "저자" msgid "Shelf" msgstr "책꽂이" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "서평" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "책" @@ -3061,6 +3221,8 @@ msgid "View imported review" msgstr "" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "가져오기 마침" @@ -3096,114 +3258,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "이용자 프로필" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "나타낼 이름과 요약, 아바타를 덮어쓰기" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "이용자 설정" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "내 시간대" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "읽기 목표" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "책꽂이" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "읽은 내역" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "책 평가" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "책 목록" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3227,15 +3394,18 @@ msgid "Reject" msgstr "거절" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "실패한 항목" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "문제해결" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "가져오기를 다시 시도하면 다음의 경우에 누락된 항목이 수정될 수 있습니다." @@ -3244,21 +3414,96 @@ msgid "The book has been added to the instance since this import" msgstr "이 가져오기 이후 책이 서버에 추가된 경우." #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "일시적인 오류 또는 시간 초과로 인해 외부 데이터 소스를 사용할 수 없었던 경우." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "이 가져오기 이후 BookWyrm이 버그 수정과 함께 업데이트된 경우." #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "예상치 못한 실패 항목이 표시되는 경우에는 관리자에게 문의하거나 이슈를 열어주세요." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "전체" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "기록 수" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "계정 만들기" @@ -3309,7 +3554,7 @@ msgid "Login" msgstr "로그인" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "로그인" @@ -3325,22 +3570,22 @@ msgstr "성공! 이메일 주소 확인을 마쳤습니다." msgid "Username:" msgstr "이용자명:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "암호:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "암호를 잊었나요?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "이 사이트 더 알아보기" @@ -3368,7 +3613,7 @@ msgstr "암호 재설정" msgid "Reactivate Account" msgstr "계정 휴면 해제하기" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "계정 휴면 해제하기" @@ -3378,7 +3623,7 @@ msgid "%(site_name)s search" msgstr "" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" +msgid "Search for a book, author, user, or list" msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 @@ -3592,6 +3837,8 @@ msgid "List position" msgstr "목록 위치" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "설정" @@ -3913,8 +4160,8 @@ msgstr "" #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" -msgstr[0] "검토해야 할 새로운 link domain이 있습니다." +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" #: bookwyrm/templates/notifications/items/mention.html:20 #, python-format @@ -4082,21 +4329,21 @@ msgstr "" msgid "You have already requested to follow %(account)s" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "팔로우하려는 이용자의 핸들:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "팔로우!" @@ -4106,7 +4353,7 @@ msgstr "페디버스에서 팔로우하기" #: bookwyrm/templates/ostatus/remote_follow_button.html:19 msgid "This link opens in a pop-up window" -msgstr "" +msgstr "이 링크는 팝업 윈도우로 열려요." #: bookwyrm/templates/ostatus/subscribe.html:8 #, python-format @@ -4137,91 +4384,23 @@ msgstr "" msgid "Follow %(username)s" msgstr "%(username)s 팔로우" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "2단계 인증" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "2FA 설정 업데이트를 잘 마쳤습니다." +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "계정 옮기기" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "이 코드를 적어 두거나 안전한 곳에 복사하여 붙여넣습니다." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "순서대로 써야 하고, 다시 표시되지 않습니다." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "계정에 2단계 인증이 활성 상태입니다." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "2FA 비활성화하기" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "인증 앱에 액세스할 수 없는 경우에 대비하여 백업 코드를 생성하여 이용할 수 있습니다. 새 코드를 생성하면 이전에 생성한 백업 코드는 더 이상 기능하지 않습니다." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "백업 코드 생성하기" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "인증 앱으로 QR 코드를 스캔한 다음 아래에 앱의 코드를 입력하여 앱이 설정되었는지 확인합니다." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "셋업 키 사용하기" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "계정 이름:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "코드:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "2FA앱의 코드 기입:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "2단계 인증 (2FA)를 이용해 계정을 더욱 안전하게 보호할 수 있습니다. 로그인할 때마다 AuthyGoogle 인증기, Microsoft 인증기와 같은 휴대전화 앱을 이용해 일회용 코드를 입력해야 합니다." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "2단계 인증 설정을 시작하려면 암호를 확인해 주시기 바랍니다." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "2FA 설정하기" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "계정 옮기기" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "별칭 만들기" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "별칭 만들기" #: bookwyrm/templates/preferences/alias_user.html:12 msgid "Add another account as an alias" @@ -4310,6 +4489,12 @@ msgstr "계정 영구히 지우기" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "계정을 지우면 되돌릴 수 없어요. 이 이용자 이름은 앞으로 가입 시에 쓸 수 없어요." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "2FA 비활성화하기" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "2단계 인증 비활성하기" @@ -4339,12 +4524,12 @@ msgstr "프로필" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "표시" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "개인정보" @@ -4353,94 +4538,157 @@ msgid "Show reading goal prompt in feed" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "별점 보기" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "추천 이용자 보기" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "이 계정을 추천 이용자에 보이기" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "선호하는 시간대: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "테마:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "수동으로 팔로워 승인" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "프로필에서 팔로워 및 팔로잉 숨기기" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "개인정보 보호되는 책꽂이를 찾나요? 각 책꽂이 별로 가시성 수준을 설정할 수 있어요. 내 도서로 이동 후, 탭 바에서 책꽂이를 골라 \"책꽂이 편집\"을 클릭하세요." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "BookWyrm 계정 내보내기" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "이곳에서는 내보낼 파일을 만들 수 있습니다. 그러면 데이터를 다른 BookWyrm 계정으로 이전할 수 있습니다." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "

    파일에 포함:

    • 이용자 프로필
    • 대부분의 이용자 설정
    • 읽기 목표
    • 책꽂이
    • 읽은 내역
    • 책 평가
    • 기록
    • 소유한 목록과 저장한 목록
    • 팔로우 및 차단 이용자

    파일에 미포함:

    • 디렉트 메시지
    • 기록의 댓글
    • 그룹
    • 좋아요
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "날짜" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "크기" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4459,6 +4707,10 @@ msgstr "파일 다운로드" msgid "Account" msgstr "계정" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "계정 옮기기" @@ -4494,6 +4746,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "2단계 인증" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "2FA 설정 업데이트를 잘 마쳤습니다." + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "이 코드를 적어 두거나 안전한 곳에 복사하여 붙여넣습니다." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "순서대로 써야 하고, 다시 표시되지 않습니다." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "계정에 2단계 인증이 활성 상태입니다." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "인증 앱에 액세스할 수 없는 경우에 대비하여 백업 코드를 생성하여 이용할 수 있습니다. 새 코드를 생성하면 이전에 생성한 백업 코드는 더 이상 기능하지 않습니다." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "백업 코드 생성하기" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "인증 앱으로 QR 코드를 스캔한 다음 아래에 앱의 코드를 입력하여 앱이 설정되었는지 확인합니다." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "셋업 키 사용하기" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "계정 이름:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "코드:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "2FA앱의 코드 기입:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "2단계 인증 (2FA)를 이용해 계정을 더욱 안전하게 보호할 수 있습니다. 로그인할 때마다 AuthyGoogle 인증기, Microsoft 인증기와 같은 휴대전화 앱을 이용해 일회용 코드를 입력해야 합니다." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "2단계 인증 설정을 시작하려면 암호를 확인해 주시기 바랍니다." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "2FA 설정하기" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4539,6 +4909,7 @@ msgstr "읽기 시작함" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "진행 상황" @@ -4668,8 +5039,8 @@ msgstr "검색 쿼리" msgid "Search type" msgstr "유형 검색" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4679,12 +5050,12 @@ msgstr "유형 검색" msgid "Users" msgstr "이용자" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4705,7 +5076,7 @@ msgstr "편집" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "공지사항" @@ -4723,13 +5094,13 @@ msgstr "거짓" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "시작일:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "종료일:" @@ -4798,7 +5169,6 @@ msgstr "색깔:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "자동 중재 규칙" @@ -4811,35 +5181,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "" #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "예정:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "예약된 검사" @@ -4884,6 +5262,7 @@ msgstr "규칙 제거" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Celery 상태" @@ -4912,6 +5291,7 @@ msgid "Import triggered" msgstr "가져오기 트리거함" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "커넥터" @@ -4955,8 +5335,9 @@ msgid "Active Tasks" msgstr "활성 작업" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4969,6 +5350,8 @@ msgid "Run time" msgstr "실행 시간" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "우선도" @@ -5001,6 +5384,66 @@ msgstr "" msgid "Errors" msgstr "" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "연합한 인스턴스" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "업데이트" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5008,7 +5451,7 @@ msgid "Dashboard" msgstr "대시보드" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "전체 이용자" @@ -5017,40 +5460,36 @@ msgstr "전체 이용자" msgid "Active this month" msgstr "이번 달 활동 수" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "기록 수" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "작품 수" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "간격:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "이용자 가입 활동" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "기록 활동" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "등록된 작품" @@ -5062,9 +5501,13 @@ msgstr "등록" msgid "Statuses posted" msgstr "게시한 기록" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "전체" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5142,7 +5585,7 @@ msgstr "" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "이메일 구성" @@ -5155,7 +5598,7 @@ msgid "Successfully sent test email." msgstr "" #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "" @@ -5203,15 +5646,6 @@ msgstr "시험용 이메일 보내기" msgid "Add instance" msgstr "" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "연합한 인스턴스" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5287,12 +5721,6 @@ msgstr "노트" msgid "No notes" msgstr "" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "차단하기" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "" @@ -5345,6 +5773,49 @@ msgstr "소프트웨어" msgid "No instances found" msgstr "인스턴스를 찾을 수 없음" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "완료됨" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5391,7 +5862,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "" #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "" @@ -5411,62 +5882,81 @@ msgstr "" msgid "Set limit" msgstr "제한 설정" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "완료됨" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "이용자" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5630,6 +6120,10 @@ msgstr "중재" msgid "Reports" msgstr "제보" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5640,22 +6134,26 @@ msgstr "링크 도메인" msgid "System" msgstr "시스템" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "인스턴스 설정" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "사이트 설정" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5663,7 +6161,7 @@ msgstr "사이트 설정" msgid "Registration" msgstr "등록" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5869,6 +6367,61 @@ msgstr "해결" msgid "No reports found." msgstr "제보가 없습니다." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6114,10 +6667,6 @@ msgstr "수동으로 팔로워 승인:" msgid "Discoverable:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "인스턴스 상세:" @@ -6211,7 +6760,7 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "" #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 @@ -6222,39 +6771,39 @@ msgstr "설정" msgid "Instance domain:" msgstr "인스턴스 도메인:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "프로토콜:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "S3 사용:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "기본 인터페이스 언어:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "미리보기 이미지 활성화:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "이미지 섬네일 활성화:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "" -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "" -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "설치 과정 설명 보기" @@ -6271,7 +6820,7 @@ msgid "Need help?" msgstr "" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "책꽃이 만들기" @@ -6279,58 +6828,71 @@ msgstr "책꽃이 만들기" msgid "Edit Shelf" msgstr "책꽂이 편집" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "모든 도서" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "도서 가져오기" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" -msgstr "(%(start)s-%(end)s 보임)" +msgstr "(%(start)s-%(end)s번째 책 보는 중)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "책꽂이 편집" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "책꽂이 지우기" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "책 가져온 날" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "시작한 날" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "마침" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "끝낸 날" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "이 책꽂이는 비었어요." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "" @@ -6347,7 +6909,7 @@ msgstr "@%(username)s 제거" #: bookwyrm/templates/snippets/announcement.html:28 #, python-format msgid "Posted by %(username)s" -msgstr "" +msgstr "%(username)s 독자의 게시물" #: bookwyrm/templates/snippets/authors.html:22 #: bookwyrm/templates/snippets/trimmed_list.html:14 @@ -6386,7 +6948,7 @@ msgstr "책에 대한 몇몇 생각" #: bookwyrm/templates/snippets/create_status/comment.html:27 #: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 msgid "Progress:" -msgstr "진도:" +msgstr "진행률:" #: bookwyrm/templates/snippets/create_status/comment.html:53 #: bookwyrm/templates/snippets/progress_field.html:18 @@ -6431,10 +6993,6 @@ msgstr "스포일러 있음!" msgid "Comment:" msgstr "코멘트:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "업데이트" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "게시" @@ -6460,7 +7018,7 @@ msgstr "" msgid "At percent:" msgstr "퍼센트:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "" @@ -6494,7 +7052,7 @@ msgstr "필터 적용함" #: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 msgid "Clear filters" -msgstr "필터 해제하기" +msgstr "필터 해제하기" #: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 msgid "Apply filters" @@ -6505,10 +7063,6 @@ msgstr "필터 적용" msgid "Follow @%(username)s" msgstr "" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "팔로우" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "팔로우 요청을 취소" @@ -6541,7 +7095,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "BookWyrm의 소스 코드는 자유롭게 사용할 수 있습니다. GitHub에서 기여하거나 이슈를 제보할 수 있습니다." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "별점 없음" @@ -6552,7 +7106,7 @@ msgid_plural "%(half_rating)s stars" msgstr[0] "" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6568,7 +7122,7 @@ msgstr[0] "" #, python-format msgid "rated %(title)s: %(display_rating)s star" msgid_plural "rated %(title)s: %(display_rating)s stars" -msgstr[0] "" +msgstr[0] "님이 %(title)s에 남긴 별점: %(display_rating)s" #: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 #, python-format @@ -6652,7 +7206,7 @@ msgstr "" #: bookwyrm/templates/snippets/pagination.html:15 msgid "Previous" -msgstr "" +msgstr "이전" #: bookwyrm/templates/snippets/pagination.html:28 msgid "Older" @@ -6682,7 +7236,7 @@ msgstr "" #: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 msgid "Update progress" -msgstr "" +msgstr "진행률 갱신" #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 #, python-format @@ -6755,7 +7309,7 @@ msgstr "읽기 시작" #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 msgid "Want to read" -msgstr "" +msgstr "읽기 바람" #: bookwyrm/templates/snippets/shelf_selector.html:81 #: bookwyrm/templates/snippets/shelf_selector.html:95 @@ -6775,7 +7329,11 @@ msgstr "읽기 멈춤" #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 msgid "Finish reading" -msgstr "읽기 마치기" +msgstr "읽기 마침" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "별점 보기" #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" @@ -6827,17 +7385,17 @@ msgstr "" #: bookwyrm/templates/snippets/status/headers/note.html:8 #, python-format msgid "replied to %(username)s's status" -msgstr "" +msgstr "독자가 %(username)s'독자의 게시물에 회신" #: bookwyrm/templates/snippets/status/headers/quotation.html:8 #, python-format msgid "quoted %(book)s by %(author_name)s" -msgstr "" +msgstr "독자가 인용한 %(author_name)s%(book)s" #: bookwyrm/templates/snippets/status/headers/quotation.html:15 #, python-format msgid "quoted %(book)s" -msgstr "" +msgstr "%(book)s 인용" #: bookwyrm/templates/snippets/status/headers/rating.html:3 #, python-format @@ -6862,7 +7420,7 @@ msgstr "" #: bookwyrm/templates/snippets/status/headers/reading.html:17 #, python-format msgid "started reading %(book)s" -msgstr "" +msgstr "독자가 읽기 시작한 %(book)s" #: bookwyrm/templates/snippets/status/headers/review.html:8 #, python-format @@ -6872,7 +7430,7 @@ msgstr "" #: bookwyrm/templates/snippets/status/headers/review.html:15 #, python-format msgid "reviewed %(book)s" -msgstr "님이 서평한 %(book)s" +msgstr "" #: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 #, python-format @@ -6911,7 +7469,7 @@ msgstr "" #: bookwyrm/templates/snippets/status/status.html:10 msgid "boosted" -msgstr "부스트함" +msgstr "독자의 부스트" #: bookwyrm/templates/snippets/status/status_options.html:7 #: bookwyrm/templates/snippets/user_options.html:7 @@ -6956,11 +7514,11 @@ msgstr "2FA 체크" #: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 msgid "Enter the code from your authenticator app:" -msgstr "" +msgstr "인증기 앱의 코드를 입력:" #: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 msgid "Confirm and Log In" -msgstr "" +msgstr "확인 및 로그인" #: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 msgid "2FA is available" @@ -6973,7 +7531,7 @@ msgstr "" #: bookwyrm/templates/user/books_header.html:9 #, python-format msgid "%(username)s's books" -msgstr "" +msgstr "%(username)s'의 책들" #: bookwyrm/templates/user/goal.html:12 #, python-format @@ -7130,7 +7688,8 @@ msgid "View profile and more" msgstr "" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 @@ -7149,24 +7708,8 @@ msgstr[0] "" msgid "%(title)s: %(subtitle)s" msgstr "" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" msgstr "" #: bookwyrm/views/updates.py:45 diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo index 6332c1b5cd..537fbf09fb 100644 Binary files a/locale/lt_LT/LC_MESSAGES/django.mo and b/locale/lt_LT/LC_MESSAGES/django.mo differ diff --git a/locale/lt_LT/LC_MESSAGES/django.po b/locale/lt_LT/LC_MESSAGES/django.po index 4815bbd714..3ac537d6c2 100644 --- a/locale/lt_LT/LC_MESSAGES/django.po +++ b/locale/lt_LT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-02 04:10\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -33,56 +33,55 @@ msgstr "Mėnuo" msgid "Does Not Expire" msgstr "Galiojimas nesibaigia" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} naudoja" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Neribota" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Neteisingas slaptažodis" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Slaptažodis nesutampa" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Neteisingas slaptažodis" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Skaitymo pabaigos data negali būti ateityje." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Skaitymo pabaigos data negali būti ateityje." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Naudotojo vardas arba slaptažodis neteisingi" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Toks naudotojo vardas jau egzistuoja" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Vartotojas su šiuo el. pašto adresu jau yra." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Neteisingas kodas" @@ -90,7 +89,7 @@ msgstr "Neteisingas kodas" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Šis domenas užblokuotas. Jei manote, kad tai klaida, susisiekite su savo administratoriumi." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Ši nuoroda su failo tipu knygai jau buvo pridėta. Jei nematote, reiškia dar laukiama domeno." @@ -102,8 +101,8 @@ msgstr "Kaip pridėta į sąrašą" msgid "Book Title" msgstr "Knygos antraštė" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Įvertinimas" @@ -145,8 +144,8 @@ msgstr "Pavojus" msgid "Automatically generated report" msgstr "Automatiškai sugeneruota ataskaita" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Moderatorius ištrynė" msgid "Domain block" msgstr "Blokuoti pagal domeną" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audioknyga" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "Elektroninė knyga" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Grafinė novelė" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Knyga kietais viršeliais" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Knyga minkštais viršeliais" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Komentuoti" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Apžvalga" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citata" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Sekti" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokuoti" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Susijungę" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s yra negaliojantis remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s yra negaliojantis naudotojo vardas" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "naudotojo vardas" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Toks naudotojo vardas jau egzistuoja." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Toks naudotojo vardas jau egzistuoja." msgid "Public" msgstr "Viešas" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Viešas" msgid "Unlisted" msgstr "Slaptas" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Slaptas" msgid "Followers" msgstr "Sekėjai" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Sekėjai" msgid "Private" msgstr "Privatu" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktyvus" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Užbaigti" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Sustabdyta" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importavimas sustojo" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Klaida įkeliant knygą" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Nepavyko rasti tokios knygos" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Nemokama" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Galima nusipirkti" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Galima pasiskolinti" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Patvirtinti puslapiai" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Komentuoti" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "" @@ -363,123 +429,161 @@ msgstr "" msgid "Deleted item" msgstr "" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Apžvalgos" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Komentarai" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citatos" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Visa kita" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Pagrindinė siena" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Pagrindinis" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Knygų siena" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Knygos" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Anglų)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (kataloniečių)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Vokiečių)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Ispanų)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Baskų kalba)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (galisų)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italų (Italian)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (suomių)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Prancūzų)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norvegų (Norwegian)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (lenkų)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português brasileiro (Brazilijos portugalų)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europos portugalų)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (rumunų)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Švedų)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Supaprastinta kinų)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradicinė kinų)" @@ -517,9 +621,7 @@ msgid "The file you are uploading is too large." msgstr "" #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." msgstr "" #: bookwyrm/templates/500.html:4 @@ -616,7 +718,7 @@ msgid "Statuses posted:" msgstr "Publikuotos būsenos:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Serverio programinės įrangos versija:" @@ -730,7 +832,7 @@ msgstr "Trumpiausias skaitinys tais metais…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -814,44 +916,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Tinklapis" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Peržiūrėti ISNI įrašą" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Žiūrėti per ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Įkelti duomenis" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Žiūrėti „OpenLibrary“" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Žiūrėti „Inventaire“" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Žiūrėti „LibraryThing“" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Žiūrėti „Goodreads“" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "%(name)s knygos" @@ -888,8 +994,8 @@ msgid "Name:" msgstr "Vardas:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Reikšmes atskirkite kableliais." @@ -901,50 +1007,54 @@ msgstr "Biografija:" msgid "Wikipedia link:" msgstr "Nuoroda į wikipediją:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Tinklalapis:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Gimimo data:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Mirties data:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Autoriaus identifikatoriai" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "„Openlibrary“ raktas:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "„Inventaire“ ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "„Librarything“ raktas:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "„Goodreads“ raktas:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -952,7 +1062,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -966,14 +1076,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Išsaugoti" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -983,6 +1093,7 @@ msgstr "Išsaugoti" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -1000,34 +1111,38 @@ msgstr "Duomenų įkėlimas prisijungs prie %(source_name)s ir #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Patvirtinti" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Nepavyksta prisijungti prie nuotolinio šaltinio." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Redaguoti knygą" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Spausti, kad pridėti viršelį" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Nepavyko įkelti viršelio" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Spustelėkite padidinti" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" @@ -1036,17 +1151,17 @@ msgstr[1] "(%(review_count)s atsiliepimai)" msgstr[2] "(%(review_count)s atsiliepimų)" msgstr[3] "(%(review_count)s atsiliepimai)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Pridėti aprašymą" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Aprašymas:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" @@ -1055,49 +1170,49 @@ msgstr[1] "%(count)s leidimai" msgstr[2] "%(count)s leidimai" msgstr[3] "%(count)s leidimai" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Šis leidimas įdėtas į:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "kitas šios knygos leidimas yra jūsų %(shelf_name)s lentynoje." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Jūsų skaitymo veikla" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Pridėti skaitymo datas" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Šios knygos neskaitote." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Tavo atsiliepimai" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Tavo komentarai" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Jūsų citatos" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Temos" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Vietos" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1105,18 +1220,18 @@ msgstr "Vietos" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Sąrašai" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Pridėti prie sąrašo" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1139,40 +1254,50 @@ msgid "Copied ISBN!" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC numeris:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Įgarsintos knygos ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Pridėti viršelį" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Įkelti viršelį:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "" @@ -1246,7 +1371,7 @@ msgid "This is a new work" msgstr "Tai naujas darbas" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1299,125 +1424,129 @@ msgstr "Atgal" msgid "Title:" msgstr "Pavadinimas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Paantraštė:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serija:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Serijos numeris:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Kalbos:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Temos:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Pridėti temą" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Pašalinti temą" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Pridėti kitą temą" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Leidimas" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Leidėjas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Pirmoji publikavimo data:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Publikavimo data:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autoriai" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Pašalinti %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Autoriaus puslapis %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Pridėti autorius:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Pridėti autorių" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Jonas Jonaitė" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Pridėti dar vieną autorių" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Viršelis" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Fizinės savybės" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formatas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Informacija apie formatą:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Puslapiai:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Knygos identifikatoriai" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "„Openlibrary“ ID:" @@ -1445,7 +1574,7 @@ msgid "Any" msgstr "Bet kas" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Kalba:" @@ -1506,12 +1635,15 @@ msgid "Domain" msgstr "Domenas" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1523,8 +1655,8 @@ msgstr "Būsena" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1570,8 +1702,8 @@ msgstr "Tęsti naršymą ne BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Nuoroda veda į: %(link_url)s.
    Ar tikrai norite ten nueiti?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Tęsti" @@ -1627,7 +1759,19 @@ msgstr "Nesurūšiuota knyga" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Duomenų įkėlimas prisijungs prie %(source_name)s ir patikrins ar nėra naujos informacijos apie šią knygą. Esantys metaduomenys nebus perrašomi." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Redagavimo būsena" @@ -1654,7 +1798,7 @@ msgstr "Patvirtinimo kodas:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Siųsti" @@ -1736,12 +1880,12 @@ msgstr "Pasiūlyta" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1866,8 +2010,8 @@ msgstr "Labas!" #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm talpinamas %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1885,8 +2029,8 @@ msgstr "Prisijungti dabar" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Sužinoti daugiau apie %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2062,19 +2206,19 @@ msgid "Add to your books" msgstr "Pridėti prie savo knygų" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Norimos perskaityti" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Šiuo metu skaitomos" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2083,7 +2227,7 @@ msgid "Read" msgstr "Perskaitytos" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Nustota skaityti" @@ -2116,7 +2260,7 @@ msgstr "Kai pradedate naudotis %(site_name)s, galite pridėti knygų." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Paieška" @@ -2772,6 +2916,7 @@ msgstr "Galite sukurti arba prisijungti prie grupės. Grupės prižiūri savo kn #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupės" @@ -2888,11 +3033,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Vidutiniškai importavimas užima %(hours)s val." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Vidutiniškai importavimas užima %(minutes)s min." @@ -2918,69 +3065,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Galite atsisiųsti savo „Goodreads“ duomenis iš Importavimo ir eksportavimo puslapio, esančio jūsų „Goodreads“ paskyroje." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Duomenų failas:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Įtraukti atsiliepimus" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Privatumo nustatymai svarbiems atsiliepimams:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importuoti" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Pasiekėte importavimo limitą." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Importavimo galimybė laikinai išjungta. Dėkojame už kantrybę." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Pastaruoju metu importuota" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Sukūrimo data" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Paskutinį kartą atnaujinta" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementai" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Pastaruoju metu neimportuota" @@ -3004,20 +3163,24 @@ msgid "Imports" msgstr "Importai" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importavimas prasidėjo:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Vykdoma" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Atnaujinti" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Sustabdyti importavimą" @@ -3036,6 +3199,7 @@ msgid "Review items" msgstr "Peržiūrėti elementus" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3045,6 +3209,7 @@ msgstr[2] "%(display_counter)s nepavyko importuoti." msgstr[3] "%(display_counter)s nepavyko importuoti." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Žiūrėkite ir taisykite nepavykusius elementus" @@ -3053,12 +3218,14 @@ msgid "Row" msgstr "Eilutė" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Pavadinimas" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3067,8 +3234,8 @@ msgid "Openlibrary key" msgstr "„Openlibrary“ raktas" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autorius" @@ -3076,13 +3243,9 @@ msgstr "Autorius" msgid "Shelf" msgstr "Lentyna" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Apžvalga" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Knyga" @@ -3100,6 +3263,8 @@ msgid "View imported review" msgstr "Peržiūrėti įkeltą atsiliepimą" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importuota" @@ -3135,114 +3300,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Nario paskyra" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3266,15 +3436,18 @@ msgid "Reject" msgstr "Atmesti" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Nepavykę elementai" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Problemų sprendimas" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Bandymas įkelti dar kartą gali sumaišyti trūkstamus elementus šiais atvejais:" @@ -3283,21 +3456,96 @@ msgid "The book has been added to the instance since this import" msgstr "Importo metu knyga jau buvo pridėta" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Dėl klaidos arba pasibaigusio laiko išoriniai duomenų šaltiniai tapo nepasiekiami." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "Nuo importo datos „BookWyrm“ atnaujinto programinę įrangą ir ištaisė klaidą" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Jei matote netikėtų nesklandumų, susisiekite su administratoriumi arba registruokite problemą." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Iš viso" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Būsenos" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Sąryšis" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Priežastis" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Kurti paskyrą" @@ -3348,7 +3596,7 @@ msgid "Login" msgstr "Prisijungti" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Prisijunkite" @@ -3364,22 +3612,22 @@ msgstr "Džiugu, el. pašto adresas patvirtintas." msgid "Username:" msgstr "Naudotojo vardas:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Slaptažodis:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Pamiršote slaptažodį?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Daugiau apie šią svetainę" @@ -3407,7 +3655,7 @@ msgstr "Atstatyti slaptažodį" msgid "Reactivate Account" msgstr "Atstatyti paskyrą" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Atstatyti paskyrą" @@ -3417,8 +3665,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s paieška" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Ieškoti knygos, naudotojo arba sąrašo" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3631,6 +3879,8 @@ msgid "List position" msgstr "Sąrašo pozicija" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Nustatyti" @@ -3961,7 +4211,7 @@ msgstr "%(related_user)s ir %(other_user_d #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Reikia peržiūrėti naują nuorodų domeną" msgstr[1] "%(display_count)s nuorodų domenai laukia moderavimo" msgstr[2] "%(display_count)s nuorodų domenai laukia moderavimo" @@ -4136,21 +4386,21 @@ msgstr "Jau sekate %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Jau paprašėte leidimo sekti %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Sekite %(username)s „Fediverse“" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Sekite %(username)s iš kitos „Fediverse“ paskyros, pavyzdžiui, „BookWyrm“, „Mastodon“ arba „Pleroma“." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Pasirinkite slapyvardį, kuriuo norėtumėte sekti:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Sekti!" @@ -4191,95 +4441,27 @@ msgstr "Pirmiausia prisijunkite..." msgid "Follow %(username)s" msgstr "Sekite %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Dabar sekate %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Dviejų lygių autentifikavimas" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Sėkmingai atnaujinote 2FA nustatymus" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Užsirašyt ir išsaugot kur nors saugiai šituos kodus." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Juos reikia naudoti iš eilės ir jie daugiau nebebus parodyti." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Dviejų lygių autentikacija yra įjungta." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Išjungti 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Galima susigeneruoti atsarginius kodus, jei nebūtų galima naudotis autentikacijos programėle. Generuojant kodus seni kodai panaikinami ir nebeveiks." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Generuoti atsarginius kodus" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Norint patvirtinti, kad viskas gerai su 2FA - reikia nuskanuoti QR kodą autentikacijos programėle ir įvesti ten sugeneruotą kodą." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Naudokite nustatymo raktą" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Paskyros pavadinimas:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Kodas:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Įveskite kodą iš 2FA programėlės:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Savo paskyrą papildomai galima apsaugoti antro lygio autentikacija (2FA). Tam norint kiekvieną kartą prisijungti - reikia suvesti vienkartinį kodą, naudojant specialią programėlę, tokią kaip Authy, Google Authenticator ar Microsoft Authenticator." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Prieš tvarkant 2FA reikia patvirinti slaptažodį." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Sutvarkyti 2FA" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "" +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" #: bookwyrm/templates/preferences/alias_user.html:16 msgid "Marking another account as an alias is required if you want to move that account to this one." @@ -4364,6 +4546,12 @@ msgstr "Visam laikui ištrinti paskyrą" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Nebegalėsite atstatyti ištrintos paskyros. Ateityje nebegalėsite naudoti šio naudotojo vardo." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Išjungti 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Išjungti dviejų lygių autentifikavimą" @@ -4393,12 +4581,12 @@ msgstr "Paskyra" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Rodyti" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privatumas" @@ -4407,94 +4595,160 @@ msgid "Show reading goal prompt in feed" msgstr "Rodyti skaitymo tikslą sienoje" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Rodyti siūlomus narius" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Paskyrą įtraukti į siūlomus narius" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Jūsų paskyra atsiras kataloge ir gali būti rekomenduota kitiems „BookWyrm“ nariams." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Laiko juosta: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Grafinis apvalkalas:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Noriu tvirtinti sekėjus" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Slėpti paskyros sekėjus" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Numatytasis įrašo privatumas:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Ieškai privačių lentynų? Gali nustatyti atskirus matomumo lygius kiekvienai lentynai, reikia nueiti į Mano knygos, pasirinkti lentyną ir spustelėti \"Redaguoti lentyną\"" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "Vidutiniškai naujausi eksportai užtruko %(hours)s valandos (-ų)." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "Vidutiniškai naujausi eksportai užtruko %(minutes)s minutes (-čių)." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4513,6 +4767,10 @@ msgstr "Parsisiųsti failą" msgid "Account" msgstr "Paskyra" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4548,6 +4806,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Dviejų lygių autentifikavimas" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Sėkmingai atnaujinote 2FA nustatymus" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Užsirašyt ir išsaugot kur nors saugiai šituos kodus." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Juos reikia naudoti iš eilės ir jie daugiau nebebus parodyti." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Dviejų lygių autentikacija yra įjungta." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Galima susigeneruoti atsarginius kodus, jei nebūtų galima naudotis autentikacijos programėle. Generuojant kodus seni kodai panaikinami ir nebeveiks." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Generuoti atsarginius kodus" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Norint patvirtinti, kad viskas gerai su 2FA - reikia nuskanuoti QR kodą autentikacijos programėle ir įvesti ten sugeneruotą kodą." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Naudokite nustatymo raktą" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Paskyros pavadinimas:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Kodas:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Įveskite kodą iš 2FA programėlės:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Savo paskyrą papildomai galima apsaugoti antro lygio autentikacija (2FA). Tam norint kiekvieną kartą prisijungti - reikia suvesti vienkartinį kodą, naudojant specialią programėlę, tokią kaip Authy, Google Authenticator ar Microsoft Authenticator." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Prieš tvarkant 2FA reikia patvirinti slaptažodį." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Sutvarkyti 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4593,6 +4969,7 @@ msgstr "Pradėjo skaityti" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progresas" @@ -4725,8 +5102,8 @@ msgstr "Paieškos užklausa" msgid "Search type" msgstr "Paieškos tipas" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4736,12 +5113,12 @@ msgstr "Paieškos tipas" msgid "Users" msgstr "Nariai" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Pagal paiešką „%(query)s“ nieko nerasta" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4765,7 +5142,7 @@ msgstr "Redaguoti" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Pranešimai" @@ -4783,13 +5160,13 @@ msgstr "Netiesa" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Pradžios data:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Pabaigos data:" @@ -4858,7 +5235,6 @@ msgstr "Spalva:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Automatinio moderavimo taisyklės" @@ -4871,35 +5247,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Nebus žymimi naudotojai arba būsenos, apie kurias jau pranešta (nepaisant to, ar pranešimas jau išspręstas ir uždarytas)." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Tvarkaraštis:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Pastarąjį kartą leista:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Iš viso leista kartų:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Įjungta:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Ištrinti tvarkaraštį" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Paleisti dabar" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Pastarojo leidimo data nebus atnaujinta" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Nustatyti skanavimą" @@ -4944,6 +5328,7 @@ msgstr "Pašalinti taisyklę" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "„Celery“ būsena" @@ -4972,6 +5357,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -5015,8 +5401,9 @@ msgid "Active Tasks" msgstr "Aktyvios užduotys" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -5029,6 +5416,8 @@ msgid "Run time" msgstr "Rodymo laikas" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioritetas" @@ -5061,6 +5450,66 @@ msgstr "Eilių trynimas gali sukelti nepageidaujamą reakciją - žaisti tik, je msgid "Errors" msgstr "Klaidos" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Išjungimo priežastis:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Susijungę serveriai" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5068,7 +5517,7 @@ msgid "Dashboard" msgstr "Suvestinė" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Iš viso naudotojų" @@ -5077,40 +5526,36 @@ msgstr "Iš viso naudotojų" msgid "Active this month" msgstr "Aktyvūs šį mėnesį" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Būsenos" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Darbai" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Serverio statistika" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervalas:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dienos" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Savaitės" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Naudotojo prisijungimo veikla" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Būsenos" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Darbai sukurti" @@ -5122,9 +5567,13 @@ msgstr "Registracijos" msgid "Statuses posted" msgstr "Būsenos publikuotos" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Iš viso" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5214,7 +5663,7 @@ msgstr "Šiuo metu neblokuojamas nė vienas el. pašto domenas" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "El. pašto konfigūracija" @@ -5227,7 +5676,7 @@ msgid "Successfully sent test email." msgstr "Bandomasis el. laiškas išsiųstas sėkmingai." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "El. pašto siuntėjas:" @@ -5275,15 +5724,6 @@ msgstr "Siųsti bandomąjį el. laišką" msgid "Add instance" msgstr "Pridėti serverį" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Susijungę serveriai" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5359,12 +5799,6 @@ msgstr "Užrašai" msgid "No notes" msgstr "Užrašų nėra" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blokuoti" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Visi šio serverio nariai bus deaktyvuoti." @@ -5417,6 +5851,49 @@ msgstr "Programinė įranga" msgid "No instances found" msgstr "Serverių nerasta" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Užbaigta" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5463,7 +5940,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Kai kurie vartotojai gali pabandyti importuoti daug knygų, ko galbūt nenorima." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Įrašius 0 apribojimo nebus." @@ -5483,62 +5960,81 @@ msgstr "dienų." msgid "Set limit" msgstr "Nustatyti limitą" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Užbaigta" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Vartotojas" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Atnaujinimo data" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Laukiami elementai" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Sėkmingi elementai" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Nerasta atitinkančių importų." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5702,6 +6198,10 @@ msgstr "Moderavimas" msgid "Reports" msgstr "Pranešimai" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5712,22 +6212,26 @@ msgstr "Nuorodų puslapiai" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "„Celery“ būsena" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Serverio nustatymai" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Puslapio nustatymai" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5735,7 +6239,7 @@ msgstr "Puslapio nustatymai" msgid "Registration" msgstr "Registracija" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5941,6 +6445,61 @@ msgstr "Išspręsta" msgid "No reports found." msgstr "Pranešimų nerasta." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6186,10 +6745,6 @@ msgstr "Patvirtinti sekėjai:" msgid "Discoverable:" msgstr "Aptinkama:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Išjungimo priežastis:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Serverio informacija" @@ -6283,8 +6838,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Atrodo, kad jūsų domenas nesukonfigūruotas. Į jį neturėtų įeiti protokolas arba pasvirieji brūkšniai." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "„BookWyrm“ leidžiate produkcinėje būsenoje be https. Produkcinėje aplinkoje turi būti įjungtasUSE_HTTPS." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6294,39 +6849,39 @@ msgstr "Nustatymai" msgid "Instance domain:" msgstr "Serverio informacija:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokolas:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Naudojama S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Įprastinė sąsajos kalba:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Įjungti paveikslėlių peržiūrą:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Įjungti paveikslėlių miniatūras:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Ar viskas atrodo gerai?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Tai paskutinė galimybė nustatyti savo domeną ir protokolą." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Nustatymus galite pakeisti .env faile, esančiame jūsų serveryje." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Žiūrėti diegimo instrukcijas" @@ -6343,7 +6898,7 @@ msgid "Need help?" msgstr "Reikia pagalbos?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Sukurti lentyną" @@ -6351,16 +6906,16 @@ msgstr "Sukurti lentyną" msgid "Edit Shelf" msgstr "Redaguoti lentyną" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Visos knygos" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importuoti knygas" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" @@ -6369,43 +6924,56 @@ msgstr[1] "%(formatted_count)s knygos" msgstr[2] "%(formatted_count)s knygų" msgstr[3] "%(formatted_count)s knygos" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(rodoma %(start)s–%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Redaguoti lentyną" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Ištrinti lentyną" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Sudėta į lentynas" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Pradėta" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Baigta" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Iki" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Ši lentyna tuščia." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Pakviesti" @@ -6509,10 +7077,6 @@ msgstr "Galimas turinio atskleidimas!" msgid "Comment:" msgstr "Komentuoti:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Publikuoti" @@ -6538,7 +7102,7 @@ msgstr "Puslapyje:" msgid "At percent:" msgstr "Proc.:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "į" @@ -6583,10 +7147,6 @@ msgstr "Taikyti filtrus" msgid "Follow @%(username)s" msgstr "Sekti @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Sekti" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Atšaukti prašymus sekti" @@ -6619,7 +7179,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Įvertinimų nėra" @@ -6633,7 +7193,7 @@ msgstr[2] "%(half_rating)s žvaigždutės" msgstr[3] "%(half_rating)s žvaigždučių" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6870,6 +7430,10 @@ msgstr "Nustoti skaityti" msgid "Finish reading" msgstr "Baigti skaityti" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Rodyti būseną" @@ -7229,8 +7793,9 @@ msgid "View profile and more" msgstr "Žiūrėti paskyrą ir dar daugiau" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Failas viršijo maksimalų dydį: 10 MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7251,25 +7816,9 @@ msgstr[3] "%(num)d knygos %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Būsenos atnaujinimai iš {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Atsiliepimai iš {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citatos iš {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Komentarai iš {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/nl_NL/LC_MESSAGES/django.mo b/locale/nl_NL/LC_MESSAGES/django.mo index 932021e43a..7eed4f6b46 100644 Binary files a/locale/nl_NL/LC_MESSAGES/django.mo and b/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/locale/nl_NL/LC_MESSAGES/django.po b/locale/nl_NL/LC_MESSAGES/django.po index 445628c7bb..b8f0f60431 100644 --- a/locale/nl_NL/LC_MESSAGES/django.po +++ b/locale/nl_NL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-20 08:08\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-17 17:19\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Dutch\n" "Language: nl\n" @@ -33,56 +33,55 @@ msgstr "Een maand" msgid "Does Not Expire" msgstr "Verloopt niet" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} keer gebruikt" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Onbeperkt" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Onjuist wachtwoord" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Wachtwoord komt niet overeen" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Onjuist wachtwoord" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Einddatum kan niet vóór de begindatum zijn." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Einddatum van lezen kan niet voor begindatum zijn." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Einddatum van lezen kan niet in de toekomst zijn." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "De einddatum van lezen kan niet in de toekomst liggen." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Gebruikersnaam of wachtwoord is onjuist" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Er bestaat al een gebruiker met deze gebruikersnaam" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Er bestaat al een gebruiker met dit e-mailadres." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Dit e-mailadres kan niet geregistreerd worden." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Ongeldige code" @@ -90,7 +89,7 @@ msgstr "Ongeldige code" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Dit domein is geblokkeerd. Neem contact op met uw beheerder als u denkt dat dit een fout is." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Deze koppeling met het bestandstype is al toegevoegd voor dit boek. Als deze niet zichtbaar is, is het domein nog steeds in behandeling." @@ -102,8 +101,8 @@ msgstr "Lijst volgorde" msgid "Book Title" msgstr "Boektitel" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Beoordeling" @@ -145,8 +144,8 @@ msgstr "Gevaar" msgid "Automatically generated report" msgstr "Automatisch gegenereerd rapport" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Verwijdering moderator" msgid "Domain block" msgstr "Domeinblokkade" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Luisterboek" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Striproman" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Harde kaft" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Zachte kaft" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s lijkt niet op een ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s heeft niet de juiste ISBN controlesom, we verwachten %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Opmerking" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recensie" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Volgen" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokkeren" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "Onbekende fout bij importeren boek" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "ongeautoriseerd" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Gefedereerd" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s is geen geldige remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s is geen geldige gebruikersnaam" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "gebruikersnaam" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Er bestaat al een gebruiker met deze gebruikersnaam." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Er bestaat al een gebruiker met deze gebruikersnaam." msgid "Public" msgstr "Openbaar" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Openbaar" msgid "Unlisted" msgstr "Niet vermeld" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Niet vermeld" msgid "Followers" msgstr "Volgers" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Volgers" msgid "Private" msgstr "Privé" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Actief" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Voltooid" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Gestopt" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Import gestopt" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Fout bij laden boek" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Kan geen match vinden voor het boek" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Mislukt" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratis" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Te koop" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Te leen" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Goedgekeurd" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Opmerking" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Opgeloste melding" @@ -363,123 +429,159 @@ msgstr "Domein goedgekeurd" msgid "Deleted item" msgstr "Item verwijderd" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "Onbekend" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Status van %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s's reactie op %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s's citaat van %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s's beoordeling van %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s beoordeelde %(book_title)s: %(display_rating).1f ster" +msgstr[1] "%(display_name)s beoordeelde %(book_title)s: %(display_rating).1f sterren" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Recensies" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Opmerkingen" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Quotes" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Overig" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Tijdlijnen" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Start" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Boeken tijdlijn" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Boeken" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "Engels (English)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Catalaans)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Duits (Deutsch)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Spaans (Español)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Baskisch)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galicisch)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiaans)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Koreaans)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Fins)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Frans (Français)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litouws)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Noors)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Pools)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Braziliaans-Portugees)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeaans Portugees)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Roemeens)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Zweeds)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" -msgstr "" +msgstr "Українська (Oekraïens)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Vereenvoudigd Chinees)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "简体中文 (Traditioneel Chinees)" @@ -517,12 +619,8 @@ msgid "The file you are uploading is too large." msgstr "Het bestand dat u wilt uploaden is te groot." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -" U kunt een kleiner bestand proberen te gebruiken of uw BookWyrm serverbeheerder vragen om de DATA_UPLOAD_MAX_MEMORY_SIZE instelling te verhogen.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Je kunt proberen een kleiner bestand te gebruiken, of je BookWyrm serverbeheerder vragen om de DATA_UPLOAD_MAX_MEMORY_SIZE instelling te verhogen." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -618,7 +716,7 @@ msgid "Statuses posted:" msgstr "Statussen geplaatst:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Software-versie:" @@ -728,7 +826,7 @@ msgstr "Diens kortste lees dit jaar…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -808,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Bekijk op Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Website" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "ISNI vermelding bekijken" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Bekijk op ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Gegevens laden" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Bekijk op OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Bekijk op Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Bekijk op LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Bekijk op Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Boeken door %(name)s" @@ -882,8 +984,8 @@ msgid "Name:" msgstr "Naam:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Meerdere waardes scheiden met komma's." @@ -895,50 +997,54 @@ msgstr "Biografie:" msgid "Wikipedia link:" msgstr "Wikipedia koppeling:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Website:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Geboortedatum:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Datum van overlijden:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Auteur identificaties" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary sleutel:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything sleutel:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads sleutel:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -946,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -960,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Opslaan" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -977,6 +1083,7 @@ msgstr "Opslaan" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -994,100 +1101,104 @@ msgstr "Bij het laden van gegevens wordt verbinding gemaakt met %(source #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Bevestigen" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Verbinden met externe bron niet mogelijk." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Boek bewerken" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Klik om omslag toe te voegen" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Omslag laden mislukt" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Klik om te vergroten" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s recensie)" msgstr[1] "(%(review_count)s recensies)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Beschrijving toevoegen" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Beschrijving:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s editie" msgstr[1] "%(count)s edities" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Je hebt deze editie op de plank gezet in:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Een andere editie van dit boek staat op je %(shelf_name)s plank." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Jouw leesactiviteit" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Leesdata toevoegen" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Je hebt geen leesactiviteit voor dit boek." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Je recensies" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Jouw opmerkingen" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Jouw citaten" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Onderwerpen" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Plaatsen" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1095,18 +1206,18 @@ msgstr "Plaatsen" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Lijsten" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Toevoegen aan lijst" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1129,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "ISBN gekopieerd!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC Nummer:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Omslag toevoegen" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Upload Omslag:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Omslag laden vanuit URL:" @@ -1236,7 +1357,7 @@ msgid "This is a new work" msgstr "Dit is een nieuw werk" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1289,125 +1410,129 @@ msgstr "Terug" msgid "Title:" msgstr "Titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Titel voor sortering:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Ondertitel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Reeks:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Reeksnummer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Talen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Onderwerpen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Onderwerpen toevoegen" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Onderwerp verwijderen" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Nog een onderwerp toevoegen" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Uitgave" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Uitgever:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Eerste publicatiedatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Publicatiedatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Auteurs" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Verwijder %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Auteurspagina voor %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Auteurs toevoegen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Auteur toevoegen" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Pietje Puk" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Nog een auteur toevoegen" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Omslag" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Fysieke eigenschappen" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formaat:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Formaatdetails:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Pagina's:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Boek ID's" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1435,7 +1560,7 @@ msgid "Any" msgstr "Elke" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Taal:" @@ -1496,12 +1621,15 @@ msgid "Domain" msgstr "Domein" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1513,8 +1641,8 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1560,8 +1688,8 @@ msgstr "BookWyrm verlaten" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Deze koppeling brengt je naar: %(link_url)s.
    Is dat waar je heen zou willen gaan?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Ga verder" @@ -1617,7 +1745,19 @@ msgstr "Ongecategoriseerd boek" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Bij het laden van gegevens wordt verbinding gemaakt met %(source_name)s en controleren op gegevens over deze auteur die hier niet aanwezig zijn. Bestaande gegevens worden niet overschreven." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Beoordeling bewerken" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Citaat bewerken" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Opmerking bewerken" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Bewerk status" @@ -1644,7 +1784,7 @@ msgstr "Bevestigingscode:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Versturen" @@ -1726,12 +1866,12 @@ msgstr "Aanbevolen" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1852,8 +1992,8 @@ msgstr "Hoi," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm gehost op %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm wordt gehost op %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1871,8 +2011,8 @@ msgstr "Nu aanmelden" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Leer meer over %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Leer meer over %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2048,19 +2188,19 @@ msgid "Add to your books" msgstr "Voeg toe aan je boeken" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Te lezen" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Aan het lezen" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2069,7 +2209,7 @@ msgid "Read" msgstr "Gelezen" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Gestopt met lezen" @@ -2102,7 +2242,7 @@ msgstr "Je kan boeken toevoegen zodra je begint met het gebruiken van %(site_nam #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Zoeken" @@ -2599,7 +2739,7 @@ msgstr "Meldingen" #: bookwyrm/templates/guided_tour/home.html:200 msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." -msgstr "" +msgstr "Uw profiel, gebruikersmap, directe berichten en instellingen kunnen worden geopend door op uw naam te klikken in het menu hier." #: bookwyrm/templates/guided_tour/home.html:200 msgid "Try selecting Profile from the drop down menu to continue the tour." @@ -2754,6 +2894,7 @@ msgstr "Je kunt een groep aanmaken of lid worden van een groep met andere gebrui #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Groepen" @@ -2868,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Je hebt %(display_left)s over." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Recente imports hebben gemiddeld %(hours)s uur in beslag genomen." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Recente imports hebben gemiddeld %(minutes)s minuten in beslag genomen." @@ -2898,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BoekenWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Je kunt je Goodreads gegevens downloaden met behulp van de Import/Export pagina van je Goodreads account." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Data bestand:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Recensies toevoegen" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Privacyinstelling voor geïmporteerde recensies:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Maak nieuwe planken aan als deze niet bestaan" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Privacyinstelling voor geïmporteerde recensies en boekenplanken:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importeren" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Je hebt de limiet voor importeren bereikt." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Importeren is tijdelijk uitgeschakeld. Bedankt voor je geduld." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Recent geïmporteerd" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Datum aangemaakt" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Laatst bijgewerkt" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Items" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Geen recente imports" @@ -2984,20 +3139,24 @@ msgid "Imports" msgstr "Imports" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importeren gestart:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "In behandeling" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Vernieuw" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Stop met importeren" @@ -3014,6 +3173,7 @@ msgid "Review items" msgstr "Items beoordelen" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3021,6 +3181,7 @@ msgstr[0] "%(display_counter)s item kon niet worden geïmporteerd." msgstr[1] "%(display_counter)s items konden niet worden geïmporteerd." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Mislukte items bekijken en verhelpen" @@ -3029,12 +3190,14 @@ msgid "Row" msgstr "Rij" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titel" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3043,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Openlibrary sleutel" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Auteur" @@ -3052,13 +3215,9 @@ msgstr "Auteur" msgid "Shelf" msgstr "Boekenplank" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recensie" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Boek" @@ -3076,6 +3235,8 @@ msgid "View imported review" msgstr "Bekijk geïmporteerde recensie" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Geïmporteerd" @@ -3107,118 +3268,123 @@ msgstr "Geen geldig importbestand" #: bookwyrm/templates/import/import_user.html:18 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." -msgstr "" +msgstr "Als u statussen (opmerkingen, recensies of citaten) wilt migreren, moet u dit account instellen als een alias van het account waarvan u migreert, of dat account naar dit account verplaatsen voordat u uw gebruikersgegevens importeert." #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Stap 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." -msgstr "" +msgstr "Selecteer een exportbestand gegenereerd uit een ander BookWyrm account. De bestandsindeling moet .tar.gz zijn." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Stap 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." -msgstr "" +msgstr "Deselecteer alle selectievakjes voor gegevens die u niet wilt opnemen in uw import." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Gebruikersprofiel" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" -msgstr "" +msgstr "Overschrijft weergavenaam, samenvatting en avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Gebruikersinstellingen" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" -msgstr "" +msgstr "Overschrijft:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" -msgstr "" +msgstr "Of handmatige goedkeuring vereist is voor andere gebruikers om uw account te volgen" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" -msgstr "" +msgstr "Of volgers worden weergegeven op jouw profiel" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" -msgstr "" +msgstr "Of je leesdoel wordt weergegeven op je profiel" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" -msgstr "" +msgstr "Of u gebruikers ziet volgen suggesties" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" -msgstr "" +msgstr "Of uw account wordt voorgesteld aan anderen" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Uw tijdszone" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "Uw standaard privacy-instelling voor post" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "Volgers en volgen" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "Geblokkeerde gebruikers" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "Leesdoelen" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "Overschrijft leesdoelen voor alle jaren vermeld in het importbestand" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "Boekenplanken" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "Leesgeschiedenis" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "Recensies boeken" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "Opmerkingen over boeken" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "Boekenlijst" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "Opgeslagen lijsten" @@ -3242,15 +3408,18 @@ msgid "Reject" msgstr "Afwijzen" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Mislukte items" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Problemen oplossen" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Opnieuw importeren kan ontbrekende items oplossen in gevallen zoals:" @@ -3259,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "Het boek is toegevoegd aan de instance sinds deze import" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Door een tijdelijke fout of een time-out was de externe gegevensbron niet beschikbaar." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm is geüpdatet sinds deze import met een bug fix" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Neem contact op met je beheerder of open een issue als je onverwachte mislukte items ziet." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Geïmporteerde gebruikers" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Totaal" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statussen" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Geïmporteerde boeken" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Relatie" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Reden" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Maak een account aan" @@ -3324,7 +3568,7 @@ msgid "Login" msgstr "Inloggen" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Inloggen" @@ -3340,22 +3584,22 @@ msgstr "Gelukt! E-mailadres bevestigd." msgid "Username:" msgstr "Gebruikersnaam:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Wachtwoord:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Meer over deze site" @@ -3383,7 +3627,7 @@ msgstr "Wachtwoord opnieuw instellen" msgid "Reactivate Account" msgstr "Heractiveer Account" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Heractiveer account" @@ -3393,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s zoeken" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Zoek een boek, gebruiker of lijst" +msgid "Search for a book, author, user, or list" +msgstr "Zoeken naar een boek, auteur, gebruiker of lijst" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3607,6 +3851,8 @@ msgid "List position" msgstr "Lijstpositie" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Instellen" @@ -3905,8 +4151,8 @@ msgstr "%(related_user)s heeft je uitgenod #, python-format msgid "New invite request awaiting response" msgid_plural "%(display_count)s new invite requests awaiting response" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Nieuwe uitnodigingsaanvraag wachtend op antwoord" +msgstr[1] "%(display_count)s nieuwe uitnodigingsverzoeken wachtend op antwoord" #: bookwyrm/templates/notifications/items/join.html:16 #, python-format @@ -3931,7 +4177,7 @@ msgstr "%(related_user)s en %(other_user_d #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Een nieuw link domein moet worden beoordeeld" msgstr[1] "%(display_count)s nieuwe link domeinen moeten worden beoordeeld" @@ -4025,12 +4271,12 @@ msgstr "heeft de omschrijving van %(group_name)s #: bookwyrm/templates/notifications/items/user_export.html:14 #, python-format msgid "Your user export is ready." -msgstr "" +msgstr "Je gebruikersexport is klaar." #: bookwyrm/templates/notifications/items/user_import.html:14 #, python-format msgid "Your user import is complete." -msgstr "" +msgstr "Je gebruikersimport is klaar." #: bookwyrm/templates/notifications/notifications_page.html:19 msgid "Delete notifications" @@ -4102,21 +4348,21 @@ msgstr "Je volgt %(account)s al" msgid "You have already requested to follow %(account)s" msgstr "Je hebt al gevraagd om %(account)s te volgen" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Volg %(username)s op het fediverse" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Volg %(username)s vanuit een ander Fediverse account, zoals BookWyrm, Mastodon of Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Gebruikersidentificatie die kan worden gebruikt om te volgen:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Volgen!" @@ -4157,103 +4403,35 @@ msgstr "Laten we eerst inloggen..." msgid "Follow %(username)s" msgstr "Volg %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Je volgt nu %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Tweestapsverificatie" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Verhuis account" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Instellingen voor 2FA zijn succesvol bijgewerkt" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Alias aanmaken" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Schrijf of kopieer en plak deze codes op een veilige plaats." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Een andere account als alias toevoegen" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Je moet ze gebruiken in dezelfde volgorde, en ze worden niet opnieuw weergegeven." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "Een andere account als alias markering is vereist als je die account naar deze wilt verhuizen." -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Tweestapsverificatie is actief voor je account." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Tweestapsverificatie uitschakelen" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Je kunt back-upcodes genereren voor het geval je geen toegang heeft tot je authenticatie-app. Als je nieuwe codes genereert, werken back-upcodes die eerder zijn gegenereerd niet meer." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Back-up codes genereren" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Scan de QR-code met je authenticatie-app en voer vervolgens de code van je app hieronder in om te bevestigen dat de app correct is ingesteld." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Gebruik setup-sleutel" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Gebruikersnaam:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Code:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Voer de code van je app in:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Je kunt je account veiliger maken door gebruik te maken van tweestapsverificatie (2FA). Dit vereist dat u een eenmalige code invoert met behulp van een telefoon app zoals Authy, Google Authenticator of Microsoft Authenticator telkens wanneer u inlogt." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Bevestig uw wachtwoord om te beginnen met het instellen van de tweestapsverificatie." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Tweestapsverificatie instellen" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "Verhuis account" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "Alias aanmaken" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "Een andere account als alias toevoegen" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "Een andere account als alias markering is vereist als je die account naar deze wilt verhuizen." - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." -msgstr "Deze actie kan ongedaan worden gemaakt en zal de functionaliteit van deze account niet wijzigen." +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "Deze actie kan ongedaan worden gemaakt en zal de functionaliteit van deze account niet wijzigen." #: bookwyrm/templates/preferences/alias_user.html:25 msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" @@ -4330,6 +4508,12 @@ msgstr "Account definitief verwijderen" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Het verwijderen van je account kan niet ongedaan worden gemaakt. De gebruikersnaam zal in de toekomst niet beschikbaar zijn om te registreren." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Tweestapsverificatie uitschakelen" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Tweestapsverificatie uitschakelen" @@ -4359,12 +4543,12 @@ msgstr "Profiel" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Weergave" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacy" @@ -4373,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Toon leesdoel prompt in feed" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Beoordelingen weergeven" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Toon voorgestelde gebruikers" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Dit account tonen bij voorgestelde gebruikers" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Je account wordt in het gebruikersoverzicht weergegeven en kan worden aanbevolen aan andere BookWyrm-gebruikers." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Voorkeurstijdzone: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Thema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Volgers handmatig goedkeuren" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Verberg Volgers en Volgend op het profiel" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Standaard privacyniveau berichten:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Op zoek naar privacy voor boekenplanken? Je kan een apart zichtbaarheidsniveau instellen voor elk van je boekenplanken. Ga naar Jouw boeken, kies een boekenplank in de tabbalk en klik op \"Bewerk boekenplank\"" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "Exporteer BookWyrm Account" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." -msgstr "" +msgstr "Hier kunt u een exportbestand aanmaken. Dit zal u toestaan uw gegevens te migreren naar een ander BookWyrm account." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "" +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Het bestand zal bevatten:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Meeste gebruikersinstellingen" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Uw eigen lijsten en opgeslagen lijsten" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Welke gebruikers u volgt en blokkeert" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Uw bestand bevat niet:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Privéberichten" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Antwoorden op uw statussen" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favorieten" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." -msgstr "" +msgstr "In je nieuwe BookWyrm account kan je kiezen wat je wilt importeren: je hoeft niet alles te importeren wat geëxporteerd wordt." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." -msgstr "" +msgstr "Als u statussen (opmerkingen, recensies of citaten) wilt migreren, moet u het account waarnaar u verplaatst instellen als een alias van dit account, of dit account naar het nieuwe account verplaatsen voordat u uw gebruikersgegevens importeert." + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Nieuwe gebruikersexporten zijn momenteel uitgeschakeld." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "De instellingen voor gebruikersexports kunnen worden gewijzigd via de pagina Import in het Beheerders-dashboard." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" +msgstr "U kunt een nieuw exportbestand aanmaken binnen %(next_available)s" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "Maak gebruikersexportbestand aan" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "Recente exporten" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." -msgstr "" +msgstr "Exportbestanden van gebruikers worden als 'voltooid' weergegeven zodra ze klaar zijn. Dit kan even duren. Klik op de link om je bestand te downloaden." + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "Exportbestanden worden verwijderd na %(expiry_hours)s uur." +msgstr[1] "Exportbestanden worden verwijderd na %(expiry_hours)s uur." -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Datum" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Grootte" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "Download uw export" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "Archief is niet langer beschikbaar" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4469,7 +4717,7 @@ msgstr "Exporteer boekenlijst" #: bookwyrm/templates/preferences/export.html:13 msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." -msgstr "" +msgstr "Je CSV-exportbestand bevat alle boeken op je planken, boeken die je hebt beoordeeld en boeken met leesactiviteit.
    Gebruik dit om te importeren in een service zoals Goodreads." #: bookwyrm/templates/preferences/export.html:20 msgid "Download file" @@ -4479,6 +4727,10 @@ msgstr "Download bestand" msgid "Account" msgstr "Account" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "Beveiligingsinstellingen" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "Verhuis account" @@ -4516,6 +4768,124 @@ msgstr "Vergeet niet om deze gebruiker toe te voegen als een alias van het doela msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "Voer de gebruikersnaam in voor het account waar je naartoe wilt verhuizen, bijvoorbeeld user@example.com :" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "Accountbeveiliging" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Tweestapsverificatie" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Instellingen voor 2FA zijn succesvol bijgewerkt" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Schrijf of kopieer en plak deze codes op een veilige plaats." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Je moet ze gebruiken in dezelfde volgorde, en ze worden niet opnieuw weergegeven." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Tweestapsverificatie is actief voor je account." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Je kunt back-upcodes genereren voor het geval je geen toegang heeft tot je authenticatie-app. Als je nieuwe codes genereert, werken back-upcodes die eerder zijn gegenereerd niet meer." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Back-up codes genereren" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Scan de QR-code met je authenticatie-app en voer vervolgens de code van je app hieronder in om te bevestigen dat de app correct is ingesteld." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Gebruik setup-sleutel" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Gebruikersnaam:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Code:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Voer de code van je app in:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Je kunt je account veiliger maken door gebruik te maken van tweestapsverificatie (2FA). Dit vereist dat u een eenmalige code invoert met behulp van een telefoon app zoals Authy, Google Authenticator of Microsoft Authenticator telkens wanneer u inlogt." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Bevestig uw wachtwoord om te beginnen met het instellen van de tweestapsverificatie." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Tweestapsverificatie instellen" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "Sessies" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "Sommige oudere sessies worden mogelijk niet getoond." + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "IP-adres" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "Besturingssysteem" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "OS" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "Webbrowser" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "Browser" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "Jij" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "Uitloggen" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4561,6 +4931,7 @@ msgstr "Begonnen met lezen" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Voortgang" @@ -4691,8 +5062,8 @@ msgstr "Zoekopdracht" msgid "Search type" msgstr "Zoektype" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4702,12 +5073,12 @@ msgstr "Zoektype" msgid "Users" msgstr "Gebruikers" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Geen resultaten gevonden voor \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4729,7 +5100,7 @@ msgstr "Bewerken" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Mededelingen" @@ -4747,13 +5118,13 @@ msgstr "Onwaar" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Begindatum:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Einddatum:" @@ -4822,7 +5193,6 @@ msgstr "Kleur:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Auto-moderatieregels" @@ -4835,35 +5205,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Gebruikers of statussen die al gemeld zijn (ongeacht of de melding is opgelost) zullen niet worden gemarkeerd." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Schema:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Laatst uitgevoerd:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Totaal aantal uitvoeringen:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Ingeschakeld:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Schema verwijderen" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Nu uitvoeren" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Datum van laatste uitvoering zal niet worden bijgewerkt" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Scan plannen" @@ -4908,6 +5286,7 @@ msgstr "Verwijder regel" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Celery status" @@ -4936,6 +5315,7 @@ msgid "Import triggered" msgstr "Import geactiveerd" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Connectoren" @@ -4979,8 +5359,9 @@ msgid "Active Tasks" msgstr "Actieve Taken" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4993,6 +5374,8 @@ msgid "Run time" msgstr "Looptijd" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioriteit" @@ -5025,6 +5408,66 @@ msgstr "Wachtrijen leegmaken kan ernstige problemen veroorzaken, waaronder gegev msgid "Errors" msgstr "Foutmeldingen" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Reden voor deactivatie:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Deactiveren" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "Activeren" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "De prioriteit bepaalt in welke volgorde de zoekresultaten worden weergegeven. De hoogste prioriteit is 1. De standaard prioriteit is 2." + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Gefedereerde instances" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "moet worden bijgewerkt. Controleer de recente release-notities voor meer informatie." + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Bijwerken" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5032,7 +5475,7 @@ msgid "Dashboard" msgstr "Dashboard" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Totaal aantal gebruikers" @@ -5041,40 +5484,36 @@ msgstr "Totaal aantal gebruikers" msgid "Active this month" msgstr "Actief deze maand" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statussen" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Werken" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Instance activiteit" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Interval:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dagen" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Weken" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Nieuwe registraties" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Statusactiviteit" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Werken aangemaakt" @@ -5086,9 +5525,13 @@ msgstr "Registraties" msgid "Statuses posted" msgstr "Statussen geplaatst" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Totaal" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Wil je automatisch controleren of er nieuwe BookWyrm releases zijn? (aanbevolen)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Controles plannen" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5170,7 +5613,7 @@ msgstr "Momenteel worden er geen e-maildomeinen geblokkeerd" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "E-mail configuratie" @@ -5183,7 +5626,7 @@ msgid "Successfully sent test email." msgstr "Test e-mail succesvol verzonden." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "E-mail afzender:" @@ -5231,15 +5674,6 @@ msgstr "Test e-mail verzenden" msgid "Add instance" msgstr "Instance toevoegen" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Gefedereerde instances" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5315,12 +5749,6 @@ msgstr "Notities" msgid "No notes" msgstr "Geen notities" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blokkeren" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Alle gebruikers van deze instance zullen worden gedeactiveerd." @@ -5373,6 +5801,49 @@ msgstr "Software" msgid "No instances found" msgstr "Geen instances gevonden" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "Onderhoud van bestanden" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "Maximale leeftijd van exportbestanden, in uren" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "Bestanden ouder dan dit zullen worden verwijderd." + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "Stel vervaltijd in" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "Verlopen bestanden" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Voltooid" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "De vervaltijd is succesvol bijgewerkt" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5380,7 +5851,7 @@ msgstr "Stop met importeren?" #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 msgid "This action will stop the user import before it is complete and cannot be un-done" -msgstr "" +msgstr "Met deze actie wordt het importeren van de gebruiker gestopt voordat deze is voltooid en kan niet ongedaan worden gemaakt" #: bookwyrm/templates/settings/imports/imports.html:19 msgid "Disable starting new imports" @@ -5396,7 +5867,7 @@ msgstr "Zolang importeren is uitgeschakeld kunnen gebruikers geen nieuwe imports #: bookwyrm/templates/settings/imports/imports.html:32 msgid "This setting prevents both book imports and user imports." -msgstr "" +msgstr "Deze instelling voorkomt zowel de import van boeken als de import van gebruikers." #: bookwyrm/templates/settings/imports/imports.html:37 msgid "Disable imports" @@ -5419,7 +5890,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Sommige gebruikers proberen misschien een groot aantal boeken te importeren, wat je wilt beperken." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Zet de waarde op 0 om geen limiet af te dwingen." @@ -5439,62 +5910,81 @@ msgstr "dagen." msgid "Set limit" msgstr "Limiet instellen" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Schakel het starten van nieuwe gebruikersexports uit" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Dit is alleen bedoeld om te worden gebruikt als er iets heel erg mis is gegaan met exports en u de functie moet pauzeren terwijl u problemen oplost." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Als exports zijn uitgeschakeld, mogen gebruikers geen nieuwe gebruikersexports starten, dit heeft geen invloed op bestaande exports." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Gebruikersexports uitschakelen" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" -msgstr "" +msgstr "Beperk hoe vaak gebruikers kunnen importeren en exporteren" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." -msgstr "" +msgstr "Sommige gebruikers proberen mogelijk heel vaak gebruikersimports of -exports uit te voeren, wat u wilt beperken." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "Beperk de import en export van gebruikers tot eenmaal elke " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Beperk hoe vaak gebruikers gebruikersgegevens kunnen importeren en exporteren" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "uren" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "Wijzig limiet" -#: bookwyrm/templates/settings/imports/imports.html:125 +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Gebruikers kunnen momenteel geen export van nieuwe gebruikers starten. Dit is de standaardinstelling." + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Het is momenteel niet mogelijk om de functie voor export van gebruikers aan te bieden bij het gebruik van Azure voor opslag." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Gebruikersexports inschakelen" + +#: bookwyrm/templates/settings/imports/imports.html:174 msgid "Book Imports" msgstr "Geïmporteerde boeken" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Voltooid" - -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Gebruiker" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Laatst Bijgewerkt" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Openstaande items" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Succesvolle items" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Geen overeenkomende importen gevonden." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "Geïmporteerde gebruikers" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5658,6 +6148,10 @@ msgstr "Moderatie" msgid "Reports" msgstr "Meldingen" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5668,22 +6162,26 @@ msgstr "Link domeinen" msgid "System" msgstr "Systeem" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "Geplande taken" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Instance Instellingen" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Site Instellingen" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5691,7 +6189,7 @@ msgstr "Site Instellingen" msgid "Registration" msgstr "Registratie" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5897,6 +6395,61 @@ msgstr "Opgelost" msgid "No reports found." msgstr "Geen meldingen gevonden." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Geplande taken" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Taken" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Naam" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Selderij taak" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Datum gewijzigd" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Laatst uitgevoerd op" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Schema" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "Schema-ID" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Ingeschakeld" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Annuleren" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Geen ingeplande taken" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Schema's" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Geen schema's gevonden" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6142,10 +6695,6 @@ msgstr "Handmatig goedgekeurde volgers:" msgid "Discoverable:" msgstr "Vindbaar:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Reden voor deactivatie:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Instance details" @@ -6239,8 +6788,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Je domein lijkt verkeerd ingesteld te zijn. Het mag geen protocol of slashes bevatten." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Je draait BookWyrm in productie modus zonder https. USE_HTTPS zou moeten zijn ingeschakeld bij gebruik in productie." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6250,39 +6799,39 @@ msgstr "Instellingen" msgid "Instance domain:" msgstr "Instance domein:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocol:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Gebruik S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Standaard taal interface:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Preview afbeeldingen inschakelen:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Miniaturen voor afbeeldingen inschakelen:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Ziet alles er goed uit?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Dit is je laatste kans om je domein en protocol in te stellen." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Je kan jouw instance instellingen wijzigen in het .env bestand op je server." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Bekijk installatie-instructies" @@ -6299,7 +6848,7 @@ msgid "Need help?" msgstr "Hulp nodig?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Nieuwe boekenplank maken" @@ -6307,59 +6856,72 @@ msgstr "Nieuwe boekenplank maken" msgid "Edit Shelf" msgstr "Bewerk boekenplank" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Alle boeken" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importeer boeken" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s boek" msgstr[1] "%(formatted_count)s boeken" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(%(start)s-%(end)s getoond)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Bewerk boekenplank" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Verwijder boekenplank" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Op boekenplank gezet" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Begonnen" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Uitgelezen" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Tot" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "We konden geen boeken vinden die overeenkomen met %(shelves_filter_query)s" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Deze boekenplank is leeg." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Filteren op trefwoord" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Voer hier de tekst in" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Uitnodigen" @@ -6461,10 +7023,6 @@ msgstr "Spoiler waarschuwing!" msgid "Comment:" msgstr "Opmerking:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Bijwerken" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Plaatsen" @@ -6490,7 +7048,7 @@ msgstr "Op pagina:" msgid "At percent:" msgstr "Bij percentage:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "tot" @@ -6535,10 +7093,6 @@ msgstr "Filters toepassen" msgid "Follow @%(username)s" msgstr "Volg @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Volgen" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Volgverzoek ongedaan maken" @@ -6571,7 +7125,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "De broncode van BookWyrm is vrij beschikbaar. Je kunt bijdragen of problemen melden op GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Geen beoordeling" @@ -6583,7 +7137,7 @@ msgstr[0] "%(half_rating)s ster" msgstr[1] "%(half_rating)s sterren" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6669,7 +7223,7 @@ msgstr "Volg op nieuwe account" #: bookwyrm/templates/snippets/moved_user_notice.html:7 #, python-format msgid "%(user)s has moved to %(moved_to_name)s" -msgstr "" +msgstr "%(user)s is verplaatst naar %(moved_to_name)s" #: bookwyrm/templates/snippets/page_text.html:8 #, python-format @@ -6812,6 +7366,10 @@ msgstr "Stop met lezen" msgid "Finish reading" msgstr "Uitgelezen" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Beoordeling weergeven" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Toon status" @@ -7167,8 +7725,9 @@ msgid "View profile and more" msgstr "Bekijk profiel en meer" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Het bestand overschrijdt de maximale grootte: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "Het bestand overschrijdt de maximale grootte: %(max_size)sMB" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7187,25 +7746,9 @@ msgstr[1] "%(num)d boeken - van %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Statusupdates van {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Recensies van {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citaten van {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Opmerkingen van {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "een nieuwe gebruikersaccount" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo index 29996d39e0..cd5cd04a25 100644 Binary files a/locale/no_NO/LC_MESSAGES/django.mo and b/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po index 66c2a856e3..311d33a7f4 100644 --- a/locale/no_NO/LC_MESSAGES/django.po +++ b/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-02 04:10\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Norwegian\n" "Language: no\n" @@ -33,56 +33,55 @@ msgstr "Én måned" msgid "Does Not Expire" msgstr "Uendelig" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} ganger" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Ubegrenset" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Feil passord" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Passordet samsvarer ikke" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Feil passord" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Sluttdato kan ikke være før startdato." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Stoppdato for lesing kan ikke være før startdato." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Stoppdato for lesing kan ikke være i fremtiden." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Sluttdato for lesing kan ikke være i fremtiden." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Feil brukernavn eller passord" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "En bruker med det brukernavnet finnes allerede" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Den e-postadressen er allerede registrert." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Denne e-postadressen kan ikke registreres." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Feil kode" @@ -90,7 +89,7 @@ msgstr "Feil kode" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Dette domenet er blokkert. Kontakt systemansvarlig hvis du tror dette er en feil." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Denne lenka med filtype har allerede blitt lagt til for denne boka. Hvis lenka ikke er synlig er domenet fortsatt under behandling." @@ -102,8 +101,8 @@ msgstr "Liste rekkefølge" msgid "Book Title" msgstr "Boktittel" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Vurdering" @@ -145,8 +144,8 @@ msgstr "Fare" msgid "Automatically generated report" msgstr "Automatisk generert rapport" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Moderatør sletting" msgid "Domain block" msgstr "Domeneblokkering" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Lydbok" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "e-bok" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Tegneserie" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Innbundet" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Paperback" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s ser ikke ut som en ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s har ikke riktig ISBN sjekksum, vi forventet %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Kommentar" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Omtale" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Sitat" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Følg" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokkér" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "uautorisert" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "tilkobling_feil" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "ugyldig_forhold" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Føderert" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s er en ugyldig remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s er et ugyldig brukernavn" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "brukernavn" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "En bruker med det brukernavnet eksisterer allerede." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "En bruker med det brukernavnet eksisterer allerede." msgid "Public" msgstr "Offentlig" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Offentlig" msgid "Unlisted" msgstr "Uoppført" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Uoppført" msgid "Followers" msgstr "Følgere" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,69 +326,68 @@ msgstr "Følgere" msgid "Private" msgstr "Privat" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktiv" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Ferdig" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Stoppet" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importering stoppet" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Feilet ved lasting av bok" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Fant ikke den boka" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" -msgstr "" +msgstr "Mislyktes" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratis" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Tilgjengelig for kjøp" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Tilgjengelig for utlån" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Godkjent" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Kommentar" - #: bookwyrm/models/report.py:85 msgid "Resolved report" -msgstr "" +msgstr "Løst rapport" #: bookwyrm/models/report.py:86 msgid "Re-opened report" @@ -353,139 +419,175 @@ msgstr "Slettet brukerkonto" #: bookwyrm/models/report.py:93 msgid "Blocked domain" -msgstr "" +msgstr "Blokkert domene" #: bookwyrm/models/report.py:94 msgid "Approved domain" -msgstr "" +msgstr "Godkjent domene" #: bookwyrm/models/report.py:95 msgid "Deleted item" +msgstr "Slettet element" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" msgstr "" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "%(display_name)s sin status" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s sin kommentar på %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s sitt sitat fra %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s sin omtale av %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s vurderte %(book_title)s: %(display_rating).1f stjerne" +msgstr[1] "%(display_name)s vurderte %(book_title)s: %(display_rating).1f stjerner" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" -msgstr "Anmeldelser" +msgstr "Omtaler" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Kommentarer" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Sitater" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Andre ting" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Lokal tidslinje" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Hjem" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Boktidslinja" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Bøker" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Engelsk)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (katalansk)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Tysk)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Spansk)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Baskisk)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Gallisk)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiensk)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (koreansk)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (finsk)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Fransk)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litauisk)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" -msgstr "" +msgstr "Nederlands (nederlandsk)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norsk)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polsk)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português - Brasil (Brasiliansk portugisisk)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeisk Portugisisk)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (romansk)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Svensk)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" -msgstr "" +msgstr "Українська (ukrainsk)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Forenklet kinesisk)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradisjonelt kinesisk)" #: bookwyrm/templates/403.html:5 msgid "Oh no!" -msgstr "" +msgstr "Å nei!" #: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 msgid "Permission Denied" @@ -494,11 +596,11 @@ msgstr "Tilgang nektet" #: bookwyrm/templates/403.html:11 #, python-format msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." -msgstr "" +msgstr "Du har ikke rettigheter til å se denne siden eller utføre denne handlingen. Ditt brukertilgangsnivå er %(level)s." #: bookwyrm/templates/403.html:15 msgid "If you think you should have access, please speak to your BookWyrm server administrator." -msgstr "" +msgstr "Hvis du tror du burde ha tilgang til, snakk med din BookWyrm-serveradministrator." #: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 msgid "Not Found" @@ -510,17 +612,15 @@ msgstr "Den siden synes ikke å eksistere!" #: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 msgid "File too large" -msgstr "" +msgstr "Filen er for stor" #: bookwyrm/templates/413.html:9 msgid "The file you are uploading is too large." -msgstr "" +msgstr "Filen du laster opp er for stor." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "" +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Du kan prøve å bruke en mindre fil, eller be din BookWyrm-serveradministrator om å øke DATA_UPLOAD_MAX_MEMORY_SIZE-innstillingen." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -567,7 +667,7 @@ msgstr "%(title)s er den boka på %(site_ #: bookwyrm/templates/about/about.html:94 msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." -msgstr "" +msgstr "Journalfør lesingen din, snakk om bøker, skriv omtaler, og oppdag din neste bok. Reklamefri, anti-kommers og fellesskapsorientert, BookWyrm er programvare for mennesker, designet for å forbli liten og personlig. Hvis du har funksjonalitetsønsker, feilrapporter eller store vyer, ta kontakt og gjør deg selv hørt." #: bookwyrm/templates/about/about.html:105 msgid "Meet your admins" @@ -616,7 +716,7 @@ msgid "Statuses posted:" msgstr "Statuser lagt ut:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Programvareversjon:" @@ -726,7 +826,7 @@ msgstr "Den korteste teksten lest i år…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -806,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Vis på Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Nettside" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" -msgstr "Vis ISNI -oppføring" +msgstr "Vis ISNI-oppføring" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Vis på ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Last inn data" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Vis på OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Vis på Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Vis på LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Vis på Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Bøker av %(name)s" @@ -880,8 +984,8 @@ msgid "Name:" msgstr "Navn:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Adskill flere verdier med komma." @@ -893,50 +997,54 @@ msgstr "Bio:" msgid "Wikipedia link:" msgstr "Lenke til wikipedia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Nettsted:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Født:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Død:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Forfatternøkler" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary nøkkel:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything nøkkel:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads nøkkel:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -944,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -958,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Lagre" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -975,6 +1083,7 @@ msgstr "Lagre" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -992,100 +1101,104 @@ msgstr "Laster inn data kobler til %(source_name)s og finner me #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Bekreft" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Kunne ikke koble til ekstern kilde." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Rediger bok" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Klikk for å legge til omslag" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Klarte ikke å laste inn omslag" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Klikk for å forstørre" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s anmeldelse)" msgstr[1] "(%(review_count)s anmeldelser)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Legg til beskrivelse" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Beskrivelse:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s utgave" msgstr[1] "%(count)s utgaver" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Du har lagt denne utgaven i hylla:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "En annen utgave av denne boken ligger i hylla %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Din leseaktivitet" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Legg til lesedatoer" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Du har ikke lagt inn leseaktivitet for denne boka." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" -msgstr "Dine anmeldelser" +msgstr "Dine omtaler" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Dine kommentarer" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Dine sitater" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Emner" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Steder" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1093,18 +1206,18 @@ msgstr "Steder" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Lister" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Legg til i liste" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1120,53 +1233,63 @@ msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:12 #: bookwyrm/templates/book/book_identifiers.html:13 msgid "Copy ISBN" -msgstr "" +msgstr "Kopier ISBN" #: bookwyrm/templates/book/book_identifiers.html:16 msgid "Copied ISBN!" -msgstr "" +msgstr "Kopierte ISBN!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC Nummer:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna ID:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Legg til et omslag" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Last opp omslag:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Last inn omslag fra hyperlenke:" #: bookwyrm/templates/book/cover_show_modal.html:6 msgid "Book cover preview" -msgstr "Bokomslag forhåndsvisning" +msgstr "Forhåndsvisning av bokomslag" #: bookwyrm/templates/book/cover_show_modal.html:11 #: bookwyrm/templates/components/inline_form.html:8 @@ -1234,7 +1357,7 @@ msgid "This is a new work" msgstr "Dette er et nytt verk" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1287,125 +1410,129 @@ msgstr "Tilbake" msgid "Title:" msgstr "Tittel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" -msgstr "" +msgstr "Sorter etter tittel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Undertittel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Serienummer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Språk:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Emner:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Legg til emne" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Fjern emne" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Legg til et emne" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publikasjon" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Forlag:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Først utgitt:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Publiseringsdato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Forfattere" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Fjern %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Forfatterside for %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Legg til forfattere:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Legg til forfatter" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Kari Nordmann" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Legg til enda en forfatter" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Omslag" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Fysiske egenskaper" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Formatdetaljer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Sider:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Boknøkler" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary nøkkel:" @@ -1417,7 +1544,7 @@ msgstr "Utgaver av %(book_title)s" #: bookwyrm/templates/book/editions/editions.html:8 #, python-format msgid "Editions of %(work_title)s" -msgstr "" +msgstr "Utgaver av %(work_title)s" #: bookwyrm/templates/book/editions/editions.html:55 msgid "Can't find the edition you're looking for?" @@ -1433,7 +1560,7 @@ msgid "Any" msgstr "Alle" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Språk:" @@ -1494,12 +1621,15 @@ msgid "Domain" msgstr "Domene" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1511,8 +1641,8 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1558,8 +1688,8 @@ msgstr "Forlater BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Denne lenka sender deg til: %(link_url)s.
    Er det dit du vil dra?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Fortsett" @@ -1615,7 +1745,19 @@ msgstr "Usortert bok" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Lasting av data vil koble til %(source_name)s og hente metadata som ikke finnes her om boken. Eksisterende metadata vil ikke bli overskrevet." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Endre omtale" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Rediger sitat" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Rediger kommentar" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Rediger status" @@ -1642,7 +1784,7 @@ msgstr "Bekreftelseskode:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Send inn" @@ -1724,12 +1866,12 @@ msgstr "Foreslått" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1850,8 +1992,8 @@ msgstr "Heisann," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "Bokwyrm kjører på %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm vert på %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1869,8 +2011,8 @@ msgstr "Bli med nå" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Lær mer om %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Lær mer om %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2046,19 +2188,19 @@ msgid "Add to your books" msgstr "Legg til i bøkene dine" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Å lese" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Leser nå" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2067,7 +2209,7 @@ msgid "Read" msgstr "Lest" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Stoppet lesing" @@ -2100,7 +2242,7 @@ msgstr "Du kan legge til bøker når du begynner å bruke %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Søk" @@ -2318,7 +2460,7 @@ msgstr "Forvalter" #: bookwyrm/templates/groups/user_groups.html:35 msgid "No groups found." -msgstr "" +msgstr "Fant ingen grupper." #: bookwyrm/templates/guided_tour/book.html:10 msgid "This is home page of a book. Let's see what you can do while you're here!" @@ -2398,7 +2540,7 @@ msgstr "Lesestatus" #: bookwyrm/templates/guided_tour/book.html:55 msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." -msgstr "Du kan også manuelt legge til lesedato her. I motsetning til å endre lesestatus i forrige metode, å legge til datoer manuelt vil ikke automatisk legge bøkene til på Les eller Lese hyllene dine." +msgstr "Du kan også manuelt legge til lesedato her. I motsetning til å endre lesestatus i forrige metode, å legge til datoer manuelt vil ikke automatisk legge bøkene til på Les- eller Leser-hyllene dine." #: bookwyrm/templates/guided_tour/book.html:55 msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" @@ -2426,7 +2568,7 @@ msgstr "Om du har lest denne boken kan du publisere en anmeldelse inkludert en v #: bookwyrm/templates/guided_tour/book.html:128 msgid "Post a review" -msgstr "Publiser anmeldelse" +msgstr "Publiser omtale" #: bookwyrm/templates/guided_tour/book.html:151 msgid "You can share your thoughts on this book generally with a simple comment" @@ -2446,7 +2588,7 @@ msgstr "Del sitat" #: bookwyrm/templates/guided_tour/book.html:199 msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" -msgstr "Om din omtale eller kommentar kan ødelegge boken for noen som ikke har lest den ennå, du kan skjule innlegget ditt bak en plottblott-advarsel" +msgstr "Dersom din omtale eller kommentar kan spolere boken for noen som ikke har lest den ennå, du kan skjule innlegget ditt bak en plottblott-advarsel" #: bookwyrm/templates/guided_tour/book.html:200 msgid "Spoiler alerts" @@ -2454,7 +2596,7 @@ msgstr "Plottblott-advarsel" #: bookwyrm/templates/guided_tour/book.html:224 msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" -msgstr "" +msgstr "Velg hvem som kan se innlegget ditt her. Innleggets personvern kan være Offentlig (alle kan se den), Uoppført (alle kan se, men vises ikke i offentlige strømmer eller oppdagelsessider), Tilhengere (kun dine følgere kan se), eller Privat (kun du kan se)" #: bookwyrm/templates/guided_tour/book.html:225 #: bookwyrm/templates/snippets/privacy_select.html:6 @@ -2494,7 +2636,7 @@ msgstr "Din gruppe" #: bookwyrm/templates/guided_tour/group.html:31 msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." -msgstr "" +msgstr "Bruk denne søkeboksen for å finne brukere til å bli med i gruppen din. For øyeblikket må brukere være medlemmer av samme BookWyrm-instans og bli invitert av gruppeeieren." #: bookwyrm/templates/guided_tour/group.html:32 msgid "Find users" @@ -2510,7 +2652,7 @@ msgstr "Gruppemedlemmer" #: bookwyrm/templates/guided_tour/group.html:77 msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." -msgstr "" +msgstr "I tillegg til å opprette lister fra Liste-siden kan du opprette en grupperkurert liste her på gruppens hjemmeside. Ethvert medlem av gruppen kan opprette en liste kurert av gruppemedlemmer." #: bookwyrm/templates/guided_tour/group.html:78 msgid "Group lists" @@ -2557,7 +2699,7 @@ msgstr "Søkefelt" #: bookwyrm/templates/guided_tour/home.html:79 msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" -msgstr "" +msgstr "Søk bokoppføringer ved å scanne en ISBN-strekkode med å bruke enhetens kamera - flott når du er i bokhandelen eller på biblioteket!" #: bookwyrm/templates/guided_tour/home.html:80 msgid "Barcode reader" @@ -2565,7 +2707,7 @@ msgstr "Strekkodeleser" #: bookwyrm/templates/guided_tour/home.html:102 msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" -msgstr "" +msgstr "Bruk Lister-, Oppdag-, og Dine bøker-lenker til å finne leseforslag og siste hendelser på denne tjeneren, eller å se bokkatalogen din!" #: bookwyrm/templates/guided_tour/home.html:103 msgid "Navigation Bar" @@ -2573,11 +2715,11 @@ msgstr "Navigeringsfelt" #: bookwyrm/templates/guided_tour/home.html:126 msgid "Books on your reading status shelves will be shown here." -msgstr "" +msgstr "Bøkene på lesestatushyllene dine vises her." #: bookwyrm/templates/guided_tour/home.html:151 msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." -msgstr "" +msgstr "Oppdateringer fra folk du følger vil vises i Hjem-tidslinjen.

    Bøker-fanen viser aktivitet fra hvem som helst relatert til dine bøker." #: bookwyrm/templates/guided_tour/home.html:152 msgid "Timelines" @@ -2597,7 +2739,7 @@ msgstr "Varsler" #: bookwyrm/templates/guided_tour/home.html:200 msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." -msgstr "" +msgstr "Din profil, bøker, brukermappe, direktemeldinger og innstillinger kan nås ved å klikke på navnet ditt i denne menyen." #: bookwyrm/templates/guided_tour/home.html:200 msgid "Try selecting Profile from the drop down menu to continue the tour." @@ -2609,7 +2751,7 @@ msgstr "Profil og innstillingsmeny" #: bookwyrm/templates/guided_tour/lists.html:13 msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." -msgstr "" +msgstr "Dette er listesiden hvor du kan oppdage boklister opprettet av hvilken som helst bruker. En liste er en samling bøker, tilsvarende en hylle." #: bookwyrm/templates/guided_tour/lists.html:13 msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." @@ -2716,7 +2858,7 @@ msgstr "Dine bøker" #: bookwyrm/templates/guided_tour/user_books.html:31 msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." -msgstr "" +msgstr "Å lese, Leser nå, Lest, og Stoppet lesing er standardhyller. Når du endrer lesestatusen i boka flyttes den automatisk til samsvarende hylle. En bok kan bare være på én standardhylle om gangen." #: bookwyrm/templates/guided_tour/user_books.html:32 msgid "Reading status shelves" @@ -2724,11 +2866,11 @@ msgstr "Lesestatushyller" #: bookwyrm/templates/guided_tour/user_books.html:55 msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" -msgstr "" +msgstr "Du kan opprette flere tilpassede hyller for å organisere bøkene dine. En bok på en egendefinert hylle kan stå på et hvilket som helst antall andre hyller samtidig, inkludert én av standard-lesestatus hyllene" #: bookwyrm/templates/guided_tour/user_books.html:56 msgid "Adding custom shelves." -msgstr "" +msgstr "Legger til tilpassede hyller." #: bookwyrm/templates/guided_tour/user_books.html:78 msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." @@ -2744,7 +2886,7 @@ msgstr "Nå som vi har utforsket bokhyller, tar vi en titt på et relatert konse #: bookwyrm/templates/guided_tour/user_books.html:101 msgid "Click on the Lists link here to continue the tour." -msgstr "" +msgstr "Klikk på Lister-lenken her for å fortsette turen." #: bookwyrm/templates/guided_tour/user_groups.html:10 msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." @@ -2752,6 +2894,7 @@ msgstr "Du kan opprette eller bli med i en gruppe med andre brukere. Grupper kan #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupper" @@ -2794,7 +2937,7 @@ msgstr "Lagre gruppen din" #: bookwyrm/templates/guided_tour/user_profile.html:10 msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." -msgstr "" +msgstr "Dette er brukerprofilen din. Alle dine siste aktiviteter vil vises her. Andre Bookwyrm-brukere kan og se deler av denne siden – hva de kan se avhenger av dine personverninnstillinger." #: bookwyrm/templates/guided_tour/user_profile.html:11 #: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 @@ -2803,7 +2946,7 @@ msgstr "Brukerprofil" #: bookwyrm/templates/guided_tour/user_profile.html:31 msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" -msgstr "" +msgstr "Denne fanen viser alt du har lest mot ditt årlige lesemål, eller lar deg sette et. Du trenger ikke sette et lese-mål om det ikke er greia di!" #: bookwyrm/templates/guided_tour/user_profile.html:32 #: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 @@ -2812,19 +2955,19 @@ msgstr "Lesemål" #: bookwyrm/templates/guided_tour/user_profile.html:54 msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." -msgstr "" +msgstr "Her kan du se dine grupper, eller opprette en ny. En gruppe samler BookWyrm-brukere og lar de kurere lister sammen." #: bookwyrm/templates/guided_tour/user_profile.html:77 msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." -msgstr "" +msgstr "Du kan se listene dine, eller opprette en ny. En liste er en samling bøker som har noe til felles." #: bookwyrm/templates/guided_tour/user_profile.html:100 msgid "The Books tab shows your book shelves. We'll explore this later in the tour." -msgstr "" +msgstr "Bøker-fanen viser dine bokhyller. Vi vil utforske dette senere i omvisningen." #: bookwyrm/templates/guided_tour/user_profile.html:123 msgid "Now you understand the basics of your profile page, let's add a book to your shelves." -msgstr "" +msgstr "Nå som du forstår du det grunnleggende på profilsiden, la oss legge til en bok på hyllen." #: bookwyrm/templates/guided_tour/user_profile.html:123 msgid "Search for a title or author to continue the tour." @@ -2837,7 +2980,7 @@ msgstr "Finn en bok" #: bookwyrm/templates/hashtag.html:12 #, python-format msgid "See tagged statuses in the local %(site_name)s community" -msgstr "" +msgstr "Se merkede statuser i det lokale %(site_name)s-samfunnet" #: bookwyrm/templates/hashtag.html:25 msgid "No activities for this hashtag yet!" @@ -2847,7 +2990,7 @@ msgstr "Ingen aktiviteter for denne emneknaggen ennå!" #: bookwyrm/templates/import/import.html:6 #: bookwyrm/templates/preferences/layout.html:43 msgid "Import Book List" -msgstr "" +msgstr "Importer bokliste" #: bookwyrm/templates/import/import.html:12 msgid "Not a valid CSV file" @@ -2857,20 +3000,22 @@ msgstr "Ikke en gyldig CSV-fil" #, python-format msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "For øyeblikket kan du importere %(display_size)s bøker hver %(import_limit_reset)s dag." +msgstr[1] "For øyeblikket kan du importere %(display_size)s bøker hver %(import_limit_reset)s dager." #: bookwyrm/templates/import/import.html:26 #, python-format msgid "You have %(display_left)s left." -msgstr "" +msgstr "Du har %(display_left)s igjen." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "I gjennomsnitt har de siste importene tatt %(hours)s timer." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "I gjennomsnitt har de siste importene tatt %(minutes)s minutter." @@ -2896,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Du kan laste ned Goodreads-dataene dine fra Import/Export-siden på Goodreads-kontoen din." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Datafil:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" -msgstr "Inkluder anmeldelser" +msgstr "Inkluder omtaler" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Personverninnstilling for importerte anmeldelser:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Oprett nye hyller om de ikke finnes" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Personverninnstilling for importerte omtaler og hyller:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importér" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Du har nådd importeringsgrensa." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Importering er midlertidig deaktivert; takk for din tålmodighet." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Nylig importer" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Opprettet dato" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Sist oppdatert" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementer" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Ingen nylige importer" @@ -2982,20 +3139,24 @@ msgid "Imports" msgstr "Importer" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Import startet:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Pågår" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Oppdater" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Stopp import" @@ -3012,6 +3173,7 @@ msgid "Review items" msgstr "Se gjennom ting" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3019,6 +3181,7 @@ msgstr[0] "%(display_counter)s ting kunne ikke importeres." msgstr[1] "%(display_counter)s ting kunne ikke importeres." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Se og feilsøk mislykkede ting" @@ -3027,12 +3190,14 @@ msgid "Row" msgstr "Rad" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Tittel" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3041,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Openlibrary nøkkel" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Forfatter" @@ -3050,13 +3215,9 @@ msgstr "Forfatter" msgid "Shelf" msgstr "Hylle" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Anmeldelse" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Bok" @@ -3071,9 +3232,11 @@ msgstr "Ingen elementer trenger gjennomgang" #: bookwyrm/templates/import/import_status.html:186 msgid "View imported review" -msgstr "Vis importert anmeldelse" +msgstr "Vis importert omtale" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importert" @@ -3097,128 +3260,133 @@ msgstr "Oppdater import" #: bookwyrm/templates/import/import_user.html:6 #: bookwyrm/templates/preferences/layout.html:51 msgid "Import BookWyrm Account" -msgstr "" +msgstr "Importer BookWyrm-konto" #: bookwyrm/templates/import/import_user.html:13 msgid "Not a valid import file" -msgstr "" +msgstr "Ikke en gyldig importfil" #: bookwyrm/templates/import/import_user.html:18 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." -msgstr "" +msgstr "Hvis du ønsker å migrere enkelte statuser (kommentarer, omtaler, eller sitater) må du enten må angi denne kontoen som et alias av den du migrerer fra, eller flytte kontoen til denne, før du importerer dine brukerdata." #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "" +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "For øyeblikket har du tilgang til å importere én bruker hver %(hours)s timer." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Du vil kunne importere neste brukerfil %(next_time)s" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" -msgstr "" +msgstr "Steg 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." -msgstr "" +msgstr "Velg en eksportfil generert fra en annen BookWyrm-konto. Filformatet skal være .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" -msgstr "" +msgstr "Steg 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." -msgstr "" +msgstr "Velg bort eventuelle avhukingsbokser for data du ikke vil inkludere i din import." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Brukerprofil" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" -msgstr "" +msgstr "Overskriver visningsnavn, sammendrag og avatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" -msgstr "" +msgstr "Brukerinnstillinger" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" -msgstr "" +msgstr "Overskriver:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" -msgstr "" +msgstr "Om det kreves manuell godkjenning for at andre brukere skal kunne følge din konto" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" -msgstr "" +msgstr "Om følger/følgere skal vises på profilen din" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" -msgstr "" +msgstr "Om dine lesemål skal vises på profilen din" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" -msgstr "" +msgstr "Hvorvidt du vil se brukerfølgeforslag" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" -msgstr "" +msgstr "Om din konto skal kunne foreslås til andre" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" -msgstr "" +msgstr "Din tidssone" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" -msgstr "" +msgstr "Ditt standardvalg for personverninnstillinger for innlegg" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" -msgstr "" +msgstr "Følgere og fulgte" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" -msgstr "" +msgstr "Brukerblokkeringer" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" -msgstr "" +msgstr "Lesemål" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" -msgstr "" +msgstr "Skriver over lesemål for alle år oppført i importfila" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" -msgstr "" +msgstr "Hyller" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" -msgstr "" +msgstr "Leselogg" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" -msgstr "" +msgstr "Bokomtaler" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" -msgstr "" +msgstr "Kommentarer om bøker" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" -msgstr "" +msgstr "Boklister" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" -msgstr "" +msgstr "Lagrede lister" #: bookwyrm/templates/import/manual_review.html:5 #: bookwyrm/templates/import/troubleshoot.html:4 @@ -3227,7 +3395,7 @@ msgstr "Feilsøk import" #: bookwyrm/templates/import/manual_review.html:21 msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." -msgstr "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, omtaler og vurderinger til boka." #: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/lists/curate.html:71 @@ -3240,15 +3408,18 @@ msgid "Reject" msgstr "Avslå" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Mislykkede ting" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Feilsøkning" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Å prøve en import på nytt kan løse manglende ting ved tilfeller som:" @@ -3257,38 +3428,113 @@ msgid "The book has been added to the instance since this import" msgstr "Boka er lagt til i instansen siden importen" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "En forbigående feil eller tidsavbrudd forårsaket at den eksterne datakilden var utilgjengelig." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BokWyrm er oppdatert siden denne importen med en feilrettelse" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Kontakt systemansvarlig eller registrér et problem hvis du ser uventede mislykkede ting." -#: bookwyrm/templates/landing/invite.html:4 -#: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 -msgid "Create an Account" -msgstr "Opprett en konto" +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Bruker importstatus" -#: bookwyrm/templates/landing/invite.html:22 -msgid "Sorry! This invite code is no longer valid." -msgstr "Beklager! Denne invitasjonskoden er ikke lenger gyldig." +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Bruker import returstatus" -#: bookwyrm/templates/landing/landing.html:9 -msgid "Recent Books" -msgstr "Nylige bøker" +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Brukerimport" -#: bookwyrm/templates/landing/layout.html:17 -msgid "Decentralized" -msgstr "Desentralisert" +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Totalt" -#: bookwyrm/templates/landing/layout.html:23 -msgid "Friendly" +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statuser" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Følgere og blokkeringer" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Importerte bøker" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Bruker import feilsøking" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "Kontoen din ble ikke angitt som et alias for den opprinnelige brukerkontoen" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "Å prøve på nytt en import vil ikke fungere i slike tilfeller:" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "En bruker, status, eller BookWyrmserver ble slettet etter at importfilen ble opprettet" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "Importerer statuser når din gamle konto har blitt slettet" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "For øyeblikket har du tilgang til å importere, eller forsøke på nytt én bruker hver %(hours)s timer." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Du vil kunne prøve denne importen på nytt %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Forhold" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Årsak" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "Opprett en konto" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "Beklager! Denne invitasjonskoden er ikke lenger gyldig." + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "Nylige bøker" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Desentralisert" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" msgstr "Vennlig" #: bookwyrm/templates/landing/layout.html:29 @@ -3322,7 +3568,7 @@ msgid "Login" msgstr "Logg inn" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Logg inn" @@ -3338,22 +3584,22 @@ msgstr "Vellykket! E-postadressen din er bekreftet." msgid "Username:" msgstr "Brukernavn:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Passord:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Glemt passord?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Om dette nettstedet" @@ -3381,7 +3627,7 @@ msgstr "Nullstill passordet" msgid "Reactivate Account" msgstr "Reaktiver konto" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Reaktiver konto" @@ -3391,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s søk" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Søk etter bok, medlem eller liste" +msgid "Search for a book, author, user, or list" +msgstr "Søk etter bok, forfatter, bruker eller liste" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3605,6 +3851,8 @@ msgid "List position" msgstr "Listeposisjon" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Bruk" @@ -3664,7 +3912,7 @@ msgstr "Lagret" #: bookwyrm/templates/lists/list_items.html:50 msgid "No lists found." -msgstr "" +msgstr "Fant ingen lister." #: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 msgid "Your Lists" @@ -3685,11 +3933,11 @@ msgstr "Du har flyttet brukeren til til %(related_user)s accepted your invitation to join group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s godtok din invitasjon til gruppe \"%(group_name)s\"" #: bookwyrm/templates/notifications/items/accept.html:26 #, python-format msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s og %(second_user)s godtok invitasjonen din til å bli med i gruppa «%(group_name)s»" #: bookwyrm/templates/notifications/items/accept.html:36 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre godtok invitasjonen din til å bli med i gruppa «%(group_name)s»" #: bookwyrm/templates/notifications/items/add.html:33 #, python-format msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" -msgstr "" +msgstr "%(related_user)s la %(book_title)s til i din liste «%(list_name)s»" #: bookwyrm/templates/notifications/items/add.html:39 #, python-format msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" -msgstr "" +msgstr "%(related_user)s foreslo å legge %(book_title)s til i din liste «%(list_name)s»" #: bookwyrm/templates/notifications/items/add.html:47 #, python-format msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" -msgstr "" +msgstr "%(related_user)s la %(book_title)s og %(second_book_title)s til i din liste «%(list_name)s»" #: bookwyrm/templates/notifications/items/add.html:54 #, python-format msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" -msgstr "" +msgstr "%(related_user)s foreslo å legge %(book_title)s og %(second_book_title)s til i din liste «%(list_name)s»" #: bookwyrm/templates/notifications/items/add.html:66 #, python-format msgid "%(related_user)s added a book to one of your lists" -msgstr "" +msgstr "%(related_user)s la til en bok til en av dine lister" #: bookwyrm/templates/notifications/items/add.html:72 #, python-format msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(related_user)s la til %(book_title)s, %(second_book_title)s, og %(display_count)s annen bok til i din liste «%(list_name)s»" +msgstr[1] "%(related_user)s la %(book_title)s, %(second_book_title)s, og %(display_count)s andre bøker til i din liste «%(list_name)s»" #: bookwyrm/templates/notifications/items/add.html:88 #, python-format msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(related_user)s foreslo å legge %(book_title)s, %(second_book_title)s, og %(display_count)s annen bok til i din liste «%(list_name)s»" +msgstr[1] "%(related_user)s foreslo å legge %(book_title)s, %(second_book_title)s, og %(display_count)s andre bøker til i din liste «%(list_name)s»" #: bookwyrm/templates/notifications/items/boost.html:21 #, python-format msgid "%(related_user)s boosted your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s fremhevet din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:27 #, python-format msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(second_user)s fremhevet din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:36 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre fremhevet din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:44 #, python-format msgid "%(related_user)s boosted your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s fremhevet din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:50 #, python-format msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(second_user)s fremhevet din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:59 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre fremhevet din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:67 #, python-format msgid "%(related_user)s boosted your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s fremhevet ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:73 #, python-format msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(second_user)s fremhevet ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:82 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre fremhevet ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:90 #, python-format msgid "%(related_user)s boosted your status" -msgstr "" +msgstr "%(related_user)s fremhevet din status" #: bookwyrm/templates/notifications/items/boost.html:96 #, python-format msgid "%(related_user)s and %(second_user)s boosted your status" -msgstr "" +msgstr "%(related_user)s og %(second_user)s fremhevet din status" #: bookwyrm/templates/notifications/items/boost.html:105 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre fremhevet din status" #: bookwyrm/templates/notifications/items/fav.html:21 #, python-format msgid "%(related_user)s liked your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s likte din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:27 #, python-format msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(second_user)s likte din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:36 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre likte din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:44 #, python-format msgid "%(related_user)s liked your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s likte din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:50 #, python-format msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(second_user)s likte din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:59 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre likte din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:67 #, python-format msgid "%(related_user)s liked your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s likte ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:73 #, python-format msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(second_user)s likte ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:82 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre likte ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:90 #, python-format msgid "%(related_user)s liked your status" -msgstr "" +msgstr "%(related_user)s likte din status" #: bookwyrm/templates/notifications/items/fav.html:96 #, python-format msgid "%(related_user)s and %(second_user)s liked your status" -msgstr "" +msgstr "%(related_user)s og %(second_user)s likte din status" #: bookwyrm/templates/notifications/items/fav.html:105 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others liked your status" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre likte din status" #: bookwyrm/templates/notifications/items/follow.html:16 #, python-format msgid "%(related_user)s followed you" -msgstr "" +msgstr "%(related_user)s fulgte deg" #: bookwyrm/templates/notifications/items/follow.html:20 #, python-format msgid "%(related_user)s and %(second_user)s followed you" -msgstr "" +msgstr "%(related_user)s og %(second_user)s fulgte deg" #: bookwyrm/templates/notifications/items/follow.html:25 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others followed you" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre fulgte deg" #: bookwyrm/templates/notifications/items/follow_request.html:15 #, python-format msgid "%(related_user)s sent you a follow request" -msgstr "" +msgstr "%(related_user)s sendte deg en følgeforespørsel" #: bookwyrm/templates/notifications/items/import.html:14 #, python-format @@ -3897,14 +4145,14 @@ msgstr "Importen din er fullført." #: bookwyrm/templates/notifications/items/invite.html:16 #, python-format msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s inviterte deg til å bli med i gruppa «%(group_name)s»" #: bookwyrm/templates/notifications/items/invite_request.html:15 #, python-format msgid "New invite request awaiting response" msgid_plural "%(display_count)s new invite requests awaiting response" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ny invitasjonsforespørsel venter på svar" +msgstr[1] "%(display_count)s nye invitasjonsforespørsler venter på svar" #: bookwyrm/templates/notifications/items/join.html:16 #, python-format @@ -3914,54 +4162,54 @@ msgstr "har blitt med i gruppa di \"%(group_name)s%(related_user)s has left your group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s har forlatt din gruppe «%(group_name)s»" #: bookwyrm/templates/notifications/items/leave.html:26 #, python-format msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s og %(second_user)s har forlatt din gruppe «%(group_name)s»" #: bookwyrm/templates/notifications/items/leave.html:36 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" -msgstr "" +msgstr "%(related_user)s og %(other_user_display_count)s andre har forlatt din gruppe «%(group_name)s»" #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" -msgstr[0] "" -msgstr[1] "" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "Et nytt lenke-domene trenger gjennomsyn" +msgstr[1] "%(display_count)s nye lenke-domener trenger moderering" #: bookwyrm/templates/notifications/items/mention.html:20 #, python-format msgid "%(related_user)s mentioned you in a review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s nevnte deg i en omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/mention.html:26 #, python-format msgid "%(related_user)s mentioned you in a comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s nevnte deg i en kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/mention.html:32 #, python-format msgid "%(related_user)s mentioned you in a quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s nevnte deg i et sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/mention.html:38 #, python-format msgid "%(related_user)s mentioned you in a status" -msgstr "" +msgstr "%(related_user)s nevnte deg i en status" #: bookwyrm/templates/notifications/items/move_user.html:18 #, python-format msgid "%(related_user)s has moved to %(username)s" -msgstr "" +msgstr "%(related_user)s har flyttet til %(username)s" #: bookwyrm/templates/notifications/items/move_user.html:25 #, python-format msgid "%(related_user)s has undone their move" -msgstr "" +msgstr "%(related_user)s har angret flytting" #: bookwyrm/templates/notifications/items/remove.html:17 #, python-format @@ -3976,29 +4224,29 @@ msgstr "Du er fjernet fra %(group_name)s -gruppa" #: bookwyrm/templates/notifications/items/reply.html:21 #, python-format msgid "%(related_user)s replied to your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s svarte på din omtale av %(book_title)s" #: bookwyrm/templates/notifications/items/reply.html:27 #, python-format msgid "%(related_user)s replied to your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s svarte på din kommentar på %(book_title)s" #: bookwyrm/templates/notifications/items/reply.html:33 #, python-format msgid "%(related_user)s replied to your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s svarte på ditt sitat fra %(book_title)s" #: bookwyrm/templates/notifications/items/reply.html:39 #, python-format msgid "%(related_user)s replied to your status" -msgstr "" +msgstr "%(related_user)s svarte på din status" #: bookwyrm/templates/notifications/items/report.html:15 #, python-format msgid "A new report needs moderation" msgid_plural "%(display_count)s new reports need moderation" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "En ny rapport trenger moderering" +msgstr[1] "%(display_count)s nye rapporter trenger moderering" #: bookwyrm/templates/notifications/items/status_preview.html:4 #: bookwyrm/templates/snippets/status/content_status.html:62 @@ -4023,12 +4271,12 @@ msgstr "har endret beskrivelsen av %(group_name)s #: bookwyrm/templates/notifications/items/user_export.html:14 #, python-format msgid "Your user export is ready." -msgstr "" +msgstr "Brukereksporten din er klar." #: bookwyrm/templates/notifications/items/user_import.html:14 #, python-format msgid "Your user import is complete." -msgstr "" +msgstr "Brukerimporten din er ferdig." #: bookwyrm/templates/notifications/notifications_page.html:19 msgid "Delete notifications" @@ -4100,21 +4348,21 @@ msgstr "Du følger allerede %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Du har allerede bedt om å følge %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Følg %(username)s i fediverset" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Følg %(username)s fra en annen Fediverse -konto som BookWyrm, Mastodon eller Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Brukernøkkel som skal følge fra:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Følg!" @@ -4155,121 +4403,53 @@ msgstr "La oss logge inn først..." msgid "Follow %(username)s" msgstr "Følg %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Du følger nå %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Tofaktorautentisering" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Vellykket oppdatering av 2FA-innstillinger" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Skriv ned eller kopier og lim inn disse kodene et trygt sted." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Kontonavn:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Kode:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Sett opp 2FA" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 #: bookwyrm/templates/preferences/move_user.html:39 msgid "Move Account" -msgstr "" +msgstr "Flytt konto" #: bookwyrm/templates/preferences/alias_user.html:7 #: bookwyrm/templates/preferences/alias_user.html:34 msgid "Create Alias" -msgstr "" +msgstr "Opprett alias" #: bookwyrm/templates/preferences/alias_user.html:12 msgid "Add another account as an alias" -msgstr "" +msgstr "Legg til en annen konto som alias" #: bookwyrm/templates/preferences/alias_user.html:16 msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "" +msgstr "Å merke en annen konto som alias kreves om du vil flytte kontoen til denne." #: bookwyrm/templates/preferences/alias_user.html:19 msgid "This is a reversable action and will not change the functionality of this account." -msgstr "" +msgstr "Dette er en reverserbar handling og vil ikke endre funksjonaliteten til denne kontoen." #: bookwyrm/templates/preferences/alias_user.html:25 msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" -msgstr "" +msgstr "Skriv inn brukernavnet for kontoen du ønsker å legge til som et alias, f.eks. user@example.com :" #: bookwyrm/templates/preferences/alias_user.html:30 #: bookwyrm/templates/preferences/move_user.html:35 msgid "Confirm your password:" -msgstr "" +msgstr "Bekreft ditt passord:" #: bookwyrm/templates/preferences/alias_user.html:39 #: bookwyrm/templates/preferences/layout.html:28 msgid "Aliases" -msgstr "" +msgstr "Aliaser" #: bookwyrm/templates/preferences/alias_user.html:49 msgid "Remove alias" -msgstr "" +msgstr "Fjern alias" #: bookwyrm/templates/preferences/blocks.html:4 #: bookwyrm/templates/preferences/blocks.html:7 @@ -4290,11 +4470,11 @@ msgstr "Endre passord" #: bookwyrm/templates/preferences/change_password.html:15 msgid "Successfully changed password" -msgstr "" +msgstr "Passordet ble endret" #: bookwyrm/templates/preferences/change_password.html:22 msgid "Current password:" -msgstr "" +msgstr "Nåværende passord:" #: bookwyrm/templates/preferences/change_password.html:28 msgid "New password:" @@ -4310,11 +4490,11 @@ msgstr "Slett konto" #: bookwyrm/templates/preferences/delete_user.html:12 msgid "Deactivate account" -msgstr "" +msgstr "Deaktiver konto" #: bookwyrm/templates/preferences/delete_user.html:15 msgid "Your account will be hidden. You can log back in at any time to re-activate your account." -msgstr "" +msgstr "Kontoen din vil bli skjult. Du kan logge inn når som helst for å reaktivere din konto." #: bookwyrm/templates/preferences/delete_user.html:20 msgid "Deactivate Account" @@ -4328,17 +4508,23 @@ msgstr "Slett kontoen din permanent" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Å slette kontoen din kan ikke angres. Brukernavnet vil ikke være tilgjengelig for registrering i fremtiden." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Deaktiver 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Deaktiver tofaktorautentisering" #: bookwyrm/templates/preferences/disable-2fa.html:14 msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." -msgstr "" +msgstr "Ved å skru av 2FA vil alle med ditt brukernavn og passord kunne logge inn på kontoen din." #: bookwyrm/templates/preferences/disable-2fa.html:20 msgid "Turn off 2FA" -msgstr "" +msgstr "Slå av 2FA" #: bookwyrm/templates/preferences/edit_user.html:4 #: bookwyrm/templates/preferences/edit_user.html:7 @@ -4357,12 +4543,12 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" -msgstr "" +msgstr "Vis" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Personvern" @@ -4371,103 +4557,167 @@ msgid "Show reading goal prompt in feed" msgstr "Vis lesemålsfelt i strømmen" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Vis vurderinger" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Vis foreslåtte brukere" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Vis deg som en foreslått bruker å følge" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Kontoen din vil vises i e katalogen, og kan bli anbefalt til andre BookWyrm medlemmer som en å følge." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Foretrukket tidssone: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Godkjenn følgere manuelt" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" -msgstr "" +msgstr "Skjul følgere og fulgte på profilen" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Standard tilgangsnivå på innlegg:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" -msgstr "" +msgstr "Ser du etter hylle-personvern? Du kan angi et eget synlighetsnivå for hver av hyllene dine. Gå til Bøkene dine, velg en hylle fra fanelinjen, og klikk «Rediger hylle»." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" -msgstr "" +msgstr "Eksporter BookWyrm-konto" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." -msgstr "" +msgstr "Du kan opprette en eksportfil her. Dette lar deg overføre dine data til en annen BookWyrm-konto." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "" +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Filen vil inkludere:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "De fleste brukerinnstillinger" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Dine egne lister og lagrede lister" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Hvilke brukere du følger og blokkerer" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Filen din vil ikke inkludere:" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Direktemeldinger" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Svar til dine statuser" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favoritter" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." -msgstr "" +msgstr "I din nye BookWyrm-konto kan du velge hva du vil importere: du behøver ikke importere alt som blir eksportert." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." -msgstr "" +msgstr "Hvis du ønsker å migrere enkelte statuser (kommentarer, omtaler, eller sitater) må du enten må angi kontoen du flytter til som et alias av denne eller flytte denne kontoen til den nye kontoen før du importerer dine brukerdata." + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Nye brukereksporter er for øyeblikket deaktivert." -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "Brukereksportinnstillingene kan endres fra Import-siden i Admin-panelet." + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" -msgstr "" +msgstr "Du vil kunne opprette en ny eksportfil %(next_available)s" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "I gjennomsnitt har de siste eksportene tatt %(hours)s timer." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "I gjennomsnitt har de siste eksportene tatt %(minutes)s minutter." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" -msgstr "" +msgstr "Opprett brukereksportfil" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" -msgstr "" +msgstr "Nylige eksporter" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." -msgstr "" +msgstr "Brukereksportfiler vil oppføres med «fullført» når de er klare. Dette kan ta litt tid. Klikk på lenken for å laste ned filen." + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" -msgstr "" +msgstr "Dato" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" -msgstr "" +msgstr "Størrelse" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" -msgstr "" +msgstr "Last ned eksporten din" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "Arkivet er ikke lenger tilgjengelig" #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 msgid "Export Book List" -msgstr "" +msgstr "Eksporter bokliste" #: bookwyrm/templates/preferences/export.html:13 msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." -msgstr "" +msgstr "Din CSV-eksportfil vil inkludere alle bøker på dine hyller, bøker du har omtalt, og bøker med leseaktivitet.
    Bruk dette til å importere til en tjeneste som Goodreads." #: bookwyrm/templates/preferences/export.html:20 msgid "Download file" @@ -4477,9 +4727,13 @@ msgstr "Last ned fil" msgid "Account" msgstr "Konto" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" -msgstr "" +msgstr "Flytt konto" #: bookwyrm/templates/preferences/layout.html:39 msgid "Data" @@ -4491,25 +4745,145 @@ msgstr "Relasjoner" #: bookwyrm/templates/preferences/move_user.html:12 msgid "Migrate account to another server" -msgstr "" +msgstr "Migrer konto til en annen server" #: bookwyrm/templates/preferences/move_user.html:16 msgid "Moving your account will notify all your followers and direct them to follow the new account." -msgstr "" +msgstr "Å flytte kontoen din vil varsle alle dine følgere og instruere til å følge den nye kontoen." #: bookwyrm/templates/preferences/move_user.html:19 #, python-format msgid "\n" " %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" " " -msgstr "" +msgstr "\n" +" %(user)s vil bli markert som flyttet, og vil ikke være synlig eller brukbar med mindre du omgjør flyttingen.\n" +" " #: bookwyrm/templates/preferences/move_user.html:25 msgid "Remember to add this user as an alias of the target account before you try to move." -msgstr "" +msgstr "Husk å legge til denne brukeren som et alias på målkonto før du prøver å flytte." #: bookwyrm/templates/preferences/move_user.html:30 msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "Angi brukernavn for konto du ønsker å flytte til f.eks. user@example.com :" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Tofaktorautentisering" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Vellykket oppdatering av 2FA-innstillinger" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Skriv ned eller kopier og lim inn disse kodene et trygt sted." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Du må bruke dem i rekkefølge, og de vil ikke bli vist igjen." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Tofaktorautentisering er aktivert på din konto." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Du kan generere reservekoder som kan brukes i fall du ikke har tilgang til autentiseringsappen din. Om du genererer nye koder, vil ingen tidligere genererte reservekoder fungere lengre." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Generer reservekoder" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Skann QR-koden med autentiseringsappen din og skriv så inn koden fra appen inn under for å bekrefte at appen er konfigurert." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Bruk oppsettsnøkkel" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Kontonavn:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Kode:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Skriv inn koden fra appen din:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Du kan gjøre kontoen din sikrere ved å bruke tofaktorautentisering (2FA). Dette krever at du skriver inn en engangskode ved å bruke en telefon-applikasjon som Authy, Google Authenticator eller Microsoft Authenticator hver gang du logger inn." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Bekreft passordet for å starte oppsett av 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Sett opp 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." msgstr "" #: bookwyrm/templates/reading_progress/finish.html:5 @@ -4557,6 +4931,7 @@ msgstr "Begynte å lese" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Fremdrift" @@ -4635,7 +5010,7 @@ msgstr "Skanner..." #: bookwyrm/templates/search/barcode_modal.html:32 msgid "Align your book's barcode with the camera." -msgstr "" +msgstr "Juster bokens strekkode med kamera." #: bookwyrm/templates/search/barcode_modal.html:36 msgctxt "barcode scanner" @@ -4645,19 +5020,19 @@ msgstr "ISBN ble skannet" #: bookwyrm/templates/search/barcode_modal.html:37 msgctxt "followed by ISBN" msgid "Searching for book:" -msgstr "" +msgstr "Søker etter bok:" #: bookwyrm/templates/search/book.html:25 #, python-format msgid "%(formatted_review_count)s review" msgid_plural "%(formatted_review_count)s reviews" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(formatted_review_count)s omtale" +msgstr[1] "%(formatted_review_count)s omtaler" #: bookwyrm/templates/search/book.html:34 #, python-format msgid "(published %(pub_year)s)" -msgstr "" +msgstr "(utgitt %(pub_year)s)" #: bookwyrm/templates/search/book.html:50 msgid "Results from" @@ -4687,8 +5062,8 @@ msgstr "Søketerm" msgid "Search type" msgstr "Søketype" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4698,17 +5073,17 @@ msgstr "Søketype" msgid "Users" msgstr "Medlemmer" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Fant ingen treff på \"%(query)s" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(result_count)s resultat funnet" +msgstr[1] "%(result_count)s resultater funnet" #: bookwyrm/templates/settings/announcements/announcement.html:5 #: bookwyrm/templates/settings/announcements/announcement.html:8 @@ -4725,7 +5100,7 @@ msgstr "Rediger" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Kunngjøringer" @@ -4743,13 +5118,13 @@ msgstr "Usant" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Startdato:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Sluttdato:" @@ -4798,7 +5173,7 @@ msgstr "Redigér kunngjøring" #: bookwyrm/templates/settings/announcements/edit_announcement.html:45 msgid "Announcement content" -msgstr "" +msgstr "Kunngjøringsinnhold" #: bookwyrm/templates/settings/announcements/edit_announcement.html:57 msgid "Details:" @@ -4818,122 +5193,131 @@ msgstr "Farge:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" -msgstr "" +msgstr "Regler for automatisk moderering" #: bookwyrm/templates/settings/automod/rules.html:18 msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." -msgstr "" +msgstr "Automatiske modereringsregler vil opprette rapporter for enhver lokal bruker eller status med felter som samsvarer med den angitte strengen." #: bookwyrm/templates/settings/automod/rules.html:19 msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." -msgstr "" +msgstr "Brukere eller statuser som allerede er rapportert (uavhengig av om rapporten ble løst) vil ikke bli flagget." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" -msgstr "" +msgstr "Tidsplan:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" -msgstr "" +msgstr "Sist kjørt:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" -msgstr "" +msgstr "Totalt antall kjøringer:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" -msgstr "" +msgstr "Aktivert:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" -msgstr "" +msgstr "Slett tidsplan" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" -msgstr "" +msgstr "Kjør nå" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" -msgstr "" +msgstr "Siste kjøredato vil ikke bli oppdatert" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" -msgstr "" +msgstr "Planlegg skanning" #: bookwyrm/templates/settings/automod/rules.html:101 msgid "Successfully added rule" -msgstr "" +msgstr "Regel lagt til" #: bookwyrm/templates/settings/automod/rules.html:107 msgid "Add Rule" -msgstr "" +msgstr "Legg til regel" #: bookwyrm/templates/settings/automod/rules.html:116 #: bookwyrm/templates/settings/automod/rules.html:160 msgid "String match" -msgstr "" +msgstr "Streng-samsvar" #: bookwyrm/templates/settings/automod/rules.html:126 #: bookwyrm/templates/settings/automod/rules.html:163 msgid "Flag users" -msgstr "" +msgstr "Flagg brukere" #: bookwyrm/templates/settings/automod/rules.html:133 #: bookwyrm/templates/settings/automod/rules.html:166 msgid "Flag statuses" -msgstr "" +msgstr "Flagg-statuser" #: bookwyrm/templates/settings/automod/rules.html:140 msgid "Add rule" -msgstr "" +msgstr "Legg til regel" #: bookwyrm/templates/settings/automod/rules.html:147 msgid "Current Rules" -msgstr "" +msgstr "Gjeldende regler" #: bookwyrm/templates/settings/automod/rules.html:151 msgid "Show rules" -msgstr "" +msgstr "Vis regler" #: bookwyrm/templates/settings/automod/rules.html:188 msgid "Remove rule" -msgstr "" +msgstr "Fjern regel" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" -msgstr "" +msgstr "Celery-status" #: bookwyrm/templates/settings/celery.html:14 msgid "You can set up monitoring to check if Celery is running by querying:" -msgstr "" +msgstr "Du kan sette opp overvåking for å kontrollere om Celery kjører ved hjelp av spørringen:" #: bookwyrm/templates/settings/celery.html:22 msgid "Queues" -msgstr "" +msgstr "Køer" #: bookwyrm/templates/settings/celery.html:26 msgid "Streams" -msgstr "" +msgstr "Strømmer" #: bookwyrm/templates/settings/celery.html:32 msgid "Broadcast" -msgstr "" +msgstr "Kringkasting" #: bookwyrm/templates/settings/celery.html:38 msgid "Inbox" -msgstr "" +msgstr "Innboks" #: bookwyrm/templates/settings/celery.html:51 msgid "Import triggered" -msgstr "" +msgstr "Import utløst" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" -msgstr "" +msgstr "Koblinger" #: bookwyrm/templates/settings/celery.html:64 #: bookwyrm/templates/settings/site.html:91 @@ -4942,7 +5326,7 @@ msgstr "Bilder" #: bookwyrm/templates/settings/celery.html:70 msgid "Suggested Users" -msgstr "" +msgstr "Foreslåtte brukere" #: bookwyrm/templates/settings/celery.html:83 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 @@ -4952,74 +5336,137 @@ msgstr "E-post" #: bookwyrm/templates/settings/celery.html:89 msgid "Misc" -msgstr "" +msgstr "Diverse" #: bookwyrm/templates/settings/celery.html:96 msgid "Low priority" -msgstr "" +msgstr "Lav prioritet" #: bookwyrm/templates/settings/celery.html:102 msgid "Medium priority" -msgstr "" +msgstr "Middels prioritet" #: bookwyrm/templates/settings/celery.html:108 msgid "High priority" -msgstr "" +msgstr "Høy prioritet" #: bookwyrm/templates/settings/celery.html:118 msgid "Could not connect to Redis broker" -msgstr "" +msgstr "Kunne ikke koble til Redis-megler" #: bookwyrm/templates/settings/celery.html:126 msgid "Active Tasks" -msgstr "" +msgstr "Aktive oppgaver" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" -msgstr "" +msgstr "ID" #: bookwyrm/templates/settings/celery.html:132 msgid "Task name" -msgstr "" +msgstr "Oppgavenavn" #: bookwyrm/templates/settings/celery.html:133 msgid "Run time" -msgstr "" +msgstr "Kjøretid" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" -msgstr "" +msgstr "Prioritet" #: bookwyrm/templates/settings/celery.html:139 msgid "No active tasks" -msgstr "" +msgstr "Ingen aktive oppgaver" #: bookwyrm/templates/settings/celery.html:157 msgid "Workers" -msgstr "" +msgstr "Arbeidere" #: bookwyrm/templates/settings/celery.html:162 msgid "Uptime:" -msgstr "" +msgstr "Oppetid:" #: bookwyrm/templates/settings/celery.html:172 msgid "Could not connect to Celery" -msgstr "" +msgstr "Kunne ikke koble til Celery" #: bookwyrm/templates/settings/celery.html:178 #: bookwyrm/templates/settings/celery.html:201 msgid "Clear Queues" -msgstr "" +msgstr "Tøm køer" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "Å slette køer kan føre til alvorlige problemer, inkludert tap av data! Bare lek med dette hvis du vet hva du gjør. Du må stenge ned Celery-arbeideren før du gjør dette." + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "Feil" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "Finna.fi er en søketjeneste som samler inn materiale fra hundrevis av finske organisasjoner under ett tak." + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "Opprett ny kobling" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Deaktiveringsgrunn:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Deaktiver" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "Aktiver" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "Tilkoblingsinnstillinger" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "Tilkoblinger er kilder til data om bøker og forfattere." + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "Søkeresultater vises i prioritert rekkefølge. Høyest prioritet er 1. Standard prioritet er 2." -#: bookwyrm/templates/settings/celery.html:182 -msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." -msgstr "" +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "Tilkoblingsinnstillingene bestemmer bare om en kobling brukes til å levere søkeresultatene. For å håndtere flere interaksjoner med andre fødererte servere, inkludert domene-blokker, se" -#: bookwyrm/templates/settings/celery.html:208 -msgid "Errors" -msgstr "" +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Føderte instanser" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "bør oppdateres. Sjekk nylige utgivelsesnotater for mer informasjon." + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Oppdater" #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 @@ -5028,7 +5475,7 @@ msgid "Dashboard" msgstr "Kontrollpanel" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Totalt antall brukere" @@ -5037,40 +5484,36 @@ msgstr "Totalt antall brukere" msgid "Active this month" msgstr "Aktive denne måneden" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statuser" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Verker" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Instansaktivitet" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervall:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dager" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Uker" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Brukerregistreringsaktivitet" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Statusaktivitet" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Verker laget" @@ -5082,9 +5525,13 @@ msgstr "Påmeldinger" msgid "Statuses posted" msgstr "Statuser lagt ut" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Totalt" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Ønsker du å automatisk se etter nye BookWyrm-utgivelser? (anbefales)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Planlegg kontroller" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5096,11 +5543,11 @@ msgstr[1] "%(display_count)s domener må godkjennes" #: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 #, python-format msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." -msgstr "" +msgstr "Din utgående e-postadresse, %(email_sender)s, kan være feilkonfigurert." #: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." -msgstr "" +msgstr "Kontroller EMAIL_SENDER_NAME og EMAIL_SENDER_DOMAIN i .env-filen." #: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 #, python-format @@ -5111,11 +5558,11 @@ msgstr[1] "%(display_count)s invitasjonsforespørsler" #: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 msgid "Your instance is missing a code of conduct." -msgstr "" +msgstr "Instansen din mangler en oppførselskodeks." #: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 msgid "Your instance is missing a privacy policy." -msgstr "" +msgstr "Instansen din mangler personvernsregler." #: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 #, python-format @@ -5127,7 +5574,7 @@ msgstr[1] "%(display_count)s åpne rapporter" #: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 #, python-format msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." -msgstr "" +msgstr "En oppdatering er tilgjengelig! Du kjører v%(current)s og den siste utgivelsen er %(available)s." #: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 @@ -5166,42 +5613,42 @@ msgstr "Ingen e-postdomener er for øyeblikket blokkert" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" -msgstr "" +msgstr "E-postkonfigurasjon" #: bookwyrm/templates/settings/email_config.html:16 msgid "Error sending test email:" -msgstr "" +msgstr "Feil under sending av test-e-post:" #: bookwyrm/templates/settings/email_config.html:24 msgid "Successfully sent test email." -msgstr "" +msgstr "Test-e-post sendt." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" -msgstr "" +msgstr "E-postsender:" #: bookwyrm/templates/settings/email_config.html:39 msgid "Email backend:" -msgstr "" +msgstr "E-post-backend:" #: bookwyrm/templates/settings/email_config.html:46 msgid "Host:" -msgstr "" +msgstr "Vert:" #: bookwyrm/templates/settings/email_config.html:53 msgid "Host user:" -msgstr "" +msgstr "Vertsbruker:" #: bookwyrm/templates/settings/email_config.html:60 msgid "Port:" -msgstr "" +msgstr "Port:" #: bookwyrm/templates/settings/email_config.html:67 msgid "Use TLS:" -msgstr "" +msgstr "Bruk TLS:" #: bookwyrm/templates/settings/email_config.html:74 msgid "Use SSL:" @@ -5210,7 +5657,7 @@ msgstr "Bruk SSL:" #: bookwyrm/templates/settings/email_config.html:83 #, python-format msgid "Send test email to %(email)s" -msgstr "" +msgstr "Send test-e-post til %(email)s" #: bookwyrm/templates/settings/email_config.html:90 msgid "Send test email" @@ -5227,15 +5674,6 @@ msgstr "Send test-e-post" msgid "Add instance" msgstr "Legg til instans" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Føderte instanser" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5311,12 +5749,6 @@ msgstr "Notater" msgid "No notes" msgstr "Ingen notater" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blokkér" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Alle medlemmer fra denne instansen blir deaktivert." @@ -5349,7 +5781,7 @@ msgstr "Mislyktes:" #: bookwyrm/templates/settings/federation/instance_blocklist.html:62 msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" -msgstr "" +msgstr "Forventer en json-fil i FediBlock-format, med en liste over oppføringer som har instance- og url-felt. For eksempel:" #: bookwyrm/templates/settings/federation/instance_list.html:36 #: bookwyrm/templates/settings/users/server_filter.html:5 @@ -5358,7 +5790,7 @@ msgstr "Instansnavn" #: bookwyrm/templates/settings/federation/instance_list.html:44 msgid "Last updated" -msgstr "" +msgstr "Sist oppdatert" #: bookwyrm/templates/settings/federation/instance_list.html:48 #: bookwyrm/templates/settings/federation/software_filter.html:5 @@ -5369,55 +5801,98 @@ msgstr "Programvare" msgid "No instances found" msgstr "Ingen instanser funnet" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Fullført" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" -msgstr "" +msgstr "Stopp import?" #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 msgid "This action will stop the user import before it is complete and cannot be un-done" -msgstr "" +msgstr "Denne handlingen vil stoppe brukerimport før den er fullført og kan ikke omgjøres" #: bookwyrm/templates/settings/imports/imports.html:19 msgid "Disable starting new imports" -msgstr "" +msgstr "Deaktiver oppstart av nye importer" #: bookwyrm/templates/settings/imports/imports.html:30 msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." -msgstr "" +msgstr "Dette er bare ment å bli brukt når ting har gått galt med importer og du må pause funksjonen mens du tar tak i problemene." #: bookwyrm/templates/settings/imports/imports.html:31 msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." -msgstr "" +msgstr "Mens import er deaktivert vil ikke brukere kunne starte nye importer, men pågående importer vil ikke påvirkes." #: bookwyrm/templates/settings/imports/imports.html:32 msgid "This setting prevents both book imports and user imports." -msgstr "" +msgstr "Denne innstillingen hindrer både bokimport og brukerimport." #: bookwyrm/templates/settings/imports/imports.html:37 msgid "Disable imports" -msgstr "" +msgstr "Deaktiver import" #: bookwyrm/templates/settings/imports/imports.html:51 msgid "Users are currently unable to start new imports" -msgstr "" +msgstr "Brukere kan for øyeblikket ikke starte nye importer" #: bookwyrm/templates/settings/imports/imports.html:56 msgid "Enable imports" -msgstr "" +msgstr "Aktiver import" #: bookwyrm/templates/settings/imports/imports.html:64 msgid "Limit the amount of imports" -msgstr "" +msgstr "Begrens mengde import" #: bookwyrm/templates/settings/imports/imports.html:75 msgid "Some users might try to import a large number of books, which you want to limit." -msgstr "" +msgstr "Noen brukere kan prøve å importere et stort antall bøker, noe du vil begrense." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." -msgstr "" +msgstr "Sett verdien til 0 for å ikke håndheve noen grense." #: bookwyrm/templates/settings/imports/imports.html:79 msgid "Set import limit to" @@ -5435,61 +5910,80 @@ msgstr "dager." msgid "Set limit" msgstr "Sett grense" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "Deaktiver oppstart av nye brukereksporter" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "Dette er bare ment å bli brukt når ting har gått galt med eksporten og du må pause funksjonen mens du tar tak i problemene." + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "Mens eksporten er deaktivert vil ikke brukere kunne starte nye brukereksporter, men pågående eksporteringer vil ikke påvirkes." + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "Deaktiver brukereksport" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" -msgstr "" +msgstr "Begrens hvor ofte brukere kan importere og eksportere" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." -msgstr "" +msgstr "Noen brukere kan prøve å kjøre brukerimport eller -eksport svært hyppig, noe du vil begrense." -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " -msgstr "" +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Begrens hvor ofte brukere kan importere og eksportere brukerdata" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" -msgstr "" +msgstr "timer" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" -msgstr "" +msgstr "Endre grense" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" -msgstr "" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "Brukere kan for øyeblikket ikke starte ny brukereksport. Dette er standardinnstillingen." -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Fullført" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "For øyeblikket er det ikke mulig å tilby brukereksport når du bruker Azure lagring." + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "Aktiver brukereksport" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "Bokimport" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Bruker" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" -msgstr "" +msgstr "Dato oppdatert" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" -msgstr "" +msgstr "Ventende oppføringer" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" -msgstr "" +msgstr "Vellykkede oppføringer" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." -msgstr "" - -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" +msgstr "Ingen samsvarende import funnet." #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 @@ -5654,6 +6148,10 @@ msgstr "Moderering" msgid "Reports" msgstr "Rapporter" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5664,22 +6162,26 @@ msgstr "Lenkedomener" msgid "System" msgstr "System" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celery-status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Instansdetaljer" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Sideinnstillinger" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5687,12 +6189,12 @@ msgstr "Sideinnstillinger" msgid "Registration" msgstr "Registrering" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 msgid "Themes" -msgstr "" +msgstr "Temaer" #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format @@ -5731,13 +6233,13 @@ msgstr "Ingen lenker tilgjengelig til dette domenet." #: bookwyrm/templates/settings/registration_limited.html:13 #: bookwyrm/templates/settings/site.html:21 msgid "Settings saved" -msgstr "" +msgstr "Innstillinger lagret" #: bookwyrm/templates/settings/registration.html:22 #: bookwyrm/templates/settings/registration_limited.html:22 #: bookwyrm/templates/settings/site.html:30 msgid "Unable to save settings" -msgstr "" +msgstr "Kunne ikke lagre innstillinger" #: bookwyrm/templates/settings/registration.html:38 msgid "Allow registration" @@ -5745,7 +6247,7 @@ msgstr "Tillat registrering" #: bookwyrm/templates/settings/registration.html:43 msgid "Default access level:" -msgstr "" +msgstr "Standard tilgangsnivå:" #: bookwyrm/templates/settings/registration.html:61 msgid "Require users to confirm email address" @@ -5767,12 +6269,12 @@ msgstr "Invitasjonsforespørsel tekst:" #: bookwyrm/templates/settings/registration.html:80 #: bookwyrm/templates/settings/registration_limited.html:50 msgid "Set a question for invite requests" -msgstr "" +msgstr "Angi et spørsmål for invitasjonsforespørsler" #: bookwyrm/templates/settings/registration.html:85 #: bookwyrm/templates/settings/registration_limited.html:55 msgid "Question:" -msgstr "" +msgstr "Spørsmål:" #: bookwyrm/templates/settings/registration.html:90 #: bookwyrm/templates/settings/registration_limited.html:67 @@ -5781,7 +6283,7 @@ msgstr "Registrering lukket tekst:" #: bookwyrm/templates/settings/registration_limited.html:29 msgid "Registration is enabled on this instance" -msgstr "" +msgstr "Registrering er aktivert på denne instansen" #: bookwyrm/templates/settings/reports/report.html:13 msgid "Back to reports" @@ -5797,7 +6299,7 @@ msgstr "Oppdatering på din rapport:" #: bookwyrm/templates/settings/reports/report.html:37 msgid "Reported status" -msgstr "" +msgstr "Rapportert status" #: bookwyrm/templates/settings/reports/report.html:39 msgid "Status has been deleted" @@ -5809,22 +6311,22 @@ msgstr "Rapporterte lenker" #: bookwyrm/templates/settings/reports/report.html:66 msgid "Moderation Activity" -msgstr "" +msgstr "Modereringsaktivitet" #: bookwyrm/templates/settings/reports/report.html:73 #, python-format msgid "%(user)s opened this report" -msgstr "" +msgstr "%(user)s åpnet denne rapporten" #: bookwyrm/templates/settings/reports/report.html:86 #, python-format msgid "%(user)s commented on this report:" -msgstr "" +msgstr "%(user)s kommenterte denne rapporten:" #: bookwyrm/templates/settings/reports/report.html:90 #, python-format msgid "%(user)s took an action on this report:" -msgstr "" +msgstr "%(user)s gjorde en handling i denne rapporten:" #: bookwyrm/templates/settings/reports/report_header.html:6 #, python-format @@ -5839,7 +6341,7 @@ msgstr "Rapportér #%(report_id)s: Lenke lagt til av @%(username)s" #: bookwyrm/templates/settings/reports/report_header.html:17 #, python-format msgid "Report #%(report_id)s: Link domain" -msgstr "" +msgstr "Rapport #%(report_id)s: Lenkedomene" #: bookwyrm/templates/settings/reports/report_header.html:24 #, python-format @@ -5848,7 +6350,7 @@ msgstr "Rapportér #%(report_id)s: bruker @%(username)s" #: bookwyrm/templates/settings/reports/report_links_table.html:19 msgid "Approve domain" -msgstr "" +msgstr "Godkjenn domene" #: bookwyrm/templates/settings/reports/report_links_table.html:26 msgid "Block domain" @@ -5893,6 +6395,61 @@ msgstr "Løst" msgid "No reports found." msgstr "Ingen rapporter funnet." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Planlagte oppgaver" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Oppgaver" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Navn" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "Celery-oppgave" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "Dato endret" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "Sist kjørt" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "Tidsplan" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "Tidsplan-ID" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "Aktivert" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "Fjern fra tidsplan" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Ingen planlagte oppgaver" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Tidsplaner" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Ingen tidsplaner funnet" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -5933,11 +6490,11 @@ msgstr "Personvernregler:" #: bookwyrm/templates/settings/site.html:72 msgid "Impressum:" -msgstr "" +msgstr "Impressum:" #: bookwyrm/templates/settings/site.html:77 msgid "Include impressum:" -msgstr "" +msgstr "Inkluder impressum:" #: bookwyrm/templates/settings/site.html:94 msgid "Logo:" @@ -5953,7 +6510,7 @@ msgstr "Favicon:" #: bookwyrm/templates/settings/site.html:110 msgid "Default theme:" -msgstr "" +msgstr "Standardtema:" #: bookwyrm/templates/settings/site.html:125 msgid "Support link:" @@ -5973,53 +6530,53 @@ msgstr "Ytterligere info:" #: bookwyrm/templates/settings/themes.html:10 msgid "Set instance default theme" -msgstr "" +msgstr "Sett instansens standardtema" #: bookwyrm/templates/settings/themes.html:19 msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." -msgstr "" +msgstr "Et av temaene dine ser ut til å være ødelagt. Å velge dette temaet vil gjøre applikasjonen ubrukelig." #: bookwyrm/templates/settings/themes.html:28 msgid "Successfully added theme" -msgstr "" +msgstr "Tema lagt til" #: bookwyrm/templates/settings/themes.html:35 msgid "How to add a theme" -msgstr "" +msgstr "Hvordan legge til et tema" #: bookwyrm/templates/settings/themes.html:38 msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." -msgstr "" +msgstr "Kopier temafilen inn i bookwyrm/static/css/themes-mappen på tjeneren din fra kommandolinjen." #: bookwyrm/templates/settings/themes.html:41 msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." -msgstr "" +msgstr "Kjør ./bw-dev compile_themes og ./bw-dev collectstatic." #: bookwyrm/templates/settings/themes.html:44 msgid "Add the file name using the form below to make it available in the application interface." -msgstr "" +msgstr "Legg til filnavnet ved å bruke skjema nedenfor for å gjøre den tilgjengelig i applikasjonsgrensesnittet." #: bookwyrm/templates/settings/themes.html:51 #: bookwyrm/templates/settings/themes.html:91 msgid "Add theme" -msgstr "" +msgstr "Legg til tema" #: bookwyrm/templates/settings/themes.html:57 msgid "Unable to save theme" -msgstr "" +msgstr "Kunne ikke lagre tema" #: bookwyrm/templates/settings/themes.html:72 #: bookwyrm/templates/settings/themes.html:102 msgid "Theme name" -msgstr "" +msgstr "Temanavn" #: bookwyrm/templates/settings/themes.html:82 msgid "Theme filename" -msgstr "" +msgstr "Filnavn til tema" #: bookwyrm/templates/settings/themes.html:97 msgid "Available Themes" -msgstr "" +msgstr "Tilgjengelige temaer" #: bookwyrm/templates/settings/themes.html:105 msgid "File" @@ -6027,19 +6584,19 @@ msgstr "Fil" #: bookwyrm/templates/settings/themes.html:123 msgid "Remove theme" -msgstr "" +msgstr "Fjern tema" #: bookwyrm/templates/settings/themes.html:134 msgid "Test theme" -msgstr "" +msgstr "Test tema" #: bookwyrm/templates/settings/themes.html:143 msgid "Broken theme" -msgstr "" +msgstr "Ødelagt tema" #: bookwyrm/templates/settings/themes.html:152 msgid "Loaded successfully" -msgstr "" +msgstr "Lasting vellykket" #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:52 @@ -6062,7 +6619,7 @@ msgstr "Medlemmer: %(instance_name)s" #: bookwyrm/templates/settings/users/user_admin.html:29 msgid "Deleted users" -msgstr "" +msgstr "Slettet bruker" #: bookwyrm/templates/settings/users/user_admin.html:44 #: bookwyrm/templates/settings/users/username_filter.html:5 @@ -6088,7 +6645,7 @@ msgstr "Ikke angitt" #: bookwyrm/templates/settings/users/user_info.html:20 msgid "This account is the instance actor for signing HTTP requests." -msgstr "" +msgstr "Denne kontoen er instansaktør for å signere HTTP-forespørsler." #: bookwyrm/templates/settings/users/user_info.html:24 msgid "View user profile" @@ -6138,10 +6695,6 @@ msgstr "Manuelt godkjente følgere:" msgid "Discoverable:" msgstr "Synlig:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Deaktiveringsgrunn:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Instansdetaljer" @@ -6160,19 +6713,19 @@ msgstr "Brukerhandlinger" #: bookwyrm/templates/settings/users/user_moderation_actions.html:15 msgid "This is the instance admin actor" -msgstr "" +msgstr "Dette er instansen adminaktør" #: bookwyrm/templates/settings/users/user_moderation_actions.html:18 msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." -msgstr "" +msgstr "Du kan ikke slette eller deaktivere denne kontoen da den er kritisk for at tjeneren din skal fungere. Denne aktøren signerer utgående GET-forespørsler for smidig interaksjon med sikrede ActivityPub-tjenere." #: bookwyrm/templates/settings/users/user_moderation_actions.html:19 msgid "This account is not discoverable by ordinary users and does not have a profile page." -msgstr "" +msgstr "Denne kontoen er ikke synlig for vanlige brukere og har ikke en profilside." #: bookwyrm/templates/settings/users/user_moderation_actions.html:35 msgid "Activate user" -msgstr "" +msgstr "Aktiver bruker" #: bookwyrm/templates/settings/users/user_moderation_actions.html:41 msgid "Suspend user" @@ -6192,11 +6745,11 @@ msgstr "Sett opp BookWyrm" #: bookwyrm/templates/setup/admin.html:7 msgid "Your account as a user and an admin" -msgstr "" +msgstr "Din kono som en bruker og som administrator" #: bookwyrm/templates/setup/admin.html:13 msgid "Create your account" -msgstr "" +msgstr "Opprett kontoen din" #: bookwyrm/templates/setup/admin.html:20 msgid "Admin key:" @@ -6204,39 +6757,39 @@ msgstr "Administrasjonsnøkkel:" #: bookwyrm/templates/setup/admin.html:32 msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." -msgstr "" +msgstr "En admin-nøkkel ble opprettet da du installerte BookWyrm. Du kan få din admin-nøkkel ved å kjøre ./bw-dev admin_code fra kommandolinjen på din tjener." #: bookwyrm/templates/setup/admin.html:45 msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." -msgstr "" +msgstr "Som en administrator vil du kunne konfigurere instansens navn og informasjon, og moderere instansen. Dette betyr at du har tilgang til privat informasjon om dine brukere, og er ansvarlig for å svare på rapporter om dårlig oppførsel og søppelmeldinger." #: bookwyrm/templates/setup/admin.html:51 msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." -msgstr "" +msgstr "Når forekomsten er satt opp, kan du forfremme andre brukere til moderator eller admin-roller fra admin-panelet." #: bookwyrm/templates/setup/admin.html:55 msgid "Learn more about moderation" -msgstr "" +msgstr "Lær mer om moderering" #: bookwyrm/templates/setup/config.html:5 msgid "Instance Configuration" -msgstr "" +msgstr "Instanskonfigurasjon" #: bookwyrm/templates/setup/config.html:7 msgid "Make sure everything looks right before proceeding" -msgstr "" +msgstr "Pass på at alt ser rett før du går videre" #: bookwyrm/templates/setup/config.html:18 msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." -msgstr "" +msgstr "Du kjører BookWyrm i debug-modus. Dette skal aldri brukes i et produksjonsmiljø." #: bookwyrm/templates/setup/config.html:30 msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." -msgstr "" +msgstr "Domenet ditt ser ut til å være feilkonfigurert. Det skal ikke inneholde protokoll eller skråstreker." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "" +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "Du kjører BookWyrm i debug-modus. Dette skal aldri brukes i et produksjonsmiljø." #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6244,58 +6797,58 @@ msgstr "Innstillinger" #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" -msgstr "" +msgstr "Instans-domene:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "Instansens base URL:" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" -msgstr "" +msgstr "Bruker S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" -msgstr "" +msgstr "Standardspråk for grensesnitt:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" -msgstr "" +msgstr "Aktiver forhåndsvisningsbilder:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" -msgstr "" +msgstr "Aktiver miniatyrbilder:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" -msgstr "" +msgstr "Ser alt riktig ut?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." -msgstr "" +msgstr "Dette er siste sjanse for å definere domene og protokoll." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." -msgstr "" +msgstr "Du kan endre instansinnstillinger i .env-filen på tjeneren din." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" -msgstr "" +msgstr "Vis installasjonsinstruksjoner" #: bookwyrm/templates/setup/layout.html:5 msgid "Instance Setup" -msgstr "" +msgstr "Instansoppsett" #: bookwyrm/templates/setup/layout.html:21 msgid "Installing BookWyrm" -msgstr "" +msgstr "Installere BookWyrm" #: bookwyrm/templates/setup/layout.html:24 msgid "Need help?" -msgstr "" +msgstr "Trenger du hjelp?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Lag hylle" @@ -6303,59 +6856,72 @@ msgstr "Lag hylle" msgid "Edit Shelf" msgstr "Rediger hylle" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Alle bøker" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importer bøker" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s bok" msgstr[1] "%(formatted_count)s bøker" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(viser %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Rediger hylle" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Slett hylle" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Lagt på hylla" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Startet" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Fullført" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" -msgstr "" +msgstr "Fram til" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "Vi kunne ikke finne bøker som samsvarer med %(shelves_filter_query)s" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Denne hylla er tom." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "Filtrer etter nøkkelord" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Skriv inn tekst her" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Invitér" @@ -6394,12 +6960,12 @@ msgstr "%(title)s av" #: bookwyrm/templates/snippets/boost_button.html:20 #: bookwyrm/templates/snippets/boost_button.html:21 msgid "Boost" -msgstr "Støtt" +msgstr "Fremhev" #: bookwyrm/templates/snippets/boost_button.html:33 #: bookwyrm/templates/snippets/boost_button.html:34 msgid "Un-boost" -msgstr "Fjern støtte" +msgstr "Fjern fremheving" #: bookwyrm/templates/snippets/create_status.html:36 msgid "Quote" @@ -6446,7 +7012,7 @@ msgstr "Inkluder plottblott-advarsel" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 msgid "Spoilers/content warnings:" -msgstr "" +msgstr "Plottblott/Varsler om følsomt innhold:" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 msgid "Spoilers ahead!" @@ -6457,10 +7023,6 @@ msgstr "Plottblott forut!" msgid "Comment:" msgstr "Kommentar:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Innlegg" @@ -6486,18 +7048,18 @@ msgstr "På side:" msgid "At percent:" msgstr "Ved prosent:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" -msgstr "" +msgstr "til" #: bookwyrm/templates/snippets/create_status/review.html:24 #, python-format msgid "Your review of '%(book_title)s'" -msgstr "Din anmeldelse av '%(book_title)s" +msgstr "Din omtale av '%(book_title)s" #: bookwyrm/templates/snippets/create_status/review.html:39 msgid "Review:" -msgstr "Anmeldelse:" +msgstr "Omtale:" #: bookwyrm/templates/snippets/fav_button.html:16 #: bookwyrm/templates/snippets/fav_button.html:17 @@ -6531,10 +7093,6 @@ msgstr "Bruk filtre" msgid "Follow @%(username)s" msgstr "Følg %(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Følg" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Angre følgeforespørsel" @@ -6560,14 +7118,14 @@ msgstr "Dokumentasjon" #: bookwyrm/templates/snippets/footer.html:42 #, python-format msgid "Support %(site_name)s on %(support_title)s" -msgstr "" +msgstr "Støtt %(site_name)s på %(support_title)s" #: bookwyrm/templates/snippets/footer.html:49 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." -msgstr "" +msgstr "Kildekoden til BookWyrm er fritt tilgjengelig. Du kan bidra eller rapportere problemer på GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Ingen vurdering" @@ -6579,7 +7137,7 @@ msgstr[0] "%(half_rating)s stjerne" msgstr[1] "%(half_rating)s stjerner" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6604,13 +7162,13 @@ msgstr[1] "vurderte %(title)s til: %(display_r #, python-format msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" -msgstr[0] "Anmeldelse av \"%(book_title)s\" (%(display_rating)s stjerne): %(review_title)s" +msgstr[0] "Omtale av \"%(book_title)s\" (%(display_rating)s stjerne): %(review_title)s" msgstr[1] "Anmeldelse av \"%(book_title)s\" (%(display_rating)s stjerner): %(review_title)s" #: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 #, python-format msgid "Review of \"%(book_title)s\": %(review_title)s" -msgstr "Anmeldelse av \"%(book_title)s\": %(review_title)s" +msgstr "Omtale av \"%(book_title)s\": %(review_title)s" #: bookwyrm/templates/snippets/goal_form.html:4 #, python-format @@ -6641,7 +7199,7 @@ msgstr "Sett mål" #: bookwyrm/templates/snippets/goal_progress.html:7 msgctxt "Goal successfully completed" msgid "Success!" -msgstr "" +msgstr "Vellykket!" #: bookwyrm/templates/snippets/goal_progress.html:9 #, python-format @@ -6660,12 +7218,12 @@ msgstr "%(username)s har lest %(read_count)s av %(goal_coun #: bookwyrm/templates/snippets/move_user_buttons.html:10 msgid "Follow at new account" -msgstr "" +msgstr "Følg på ny konto" #: bookwyrm/templates/snippets/moved_user_notice.html:7 #, python-format msgid "%(user)s has moved to %(moved_to_name)s" -msgstr "" +msgstr "%(user)s har flyttet til %(moved_to_name)s" #: bookwyrm/templates/snippets/page_text.html:8 #, python-format @@ -6679,7 +7237,7 @@ msgstr "side %(page)s" #: bookwyrm/templates/snippets/pagination.html:13 msgid "Newer" -msgstr "" +msgstr "Nyere" #: bookwyrm/templates/snippets/pagination.html:15 msgid "Previous" @@ -6687,7 +7245,7 @@ msgstr "Forrige" #: bookwyrm/templates/snippets/pagination.html:28 msgid "Older" -msgstr "" +msgstr "Eldre" #: bookwyrm/templates/snippets/privacy-icons.html:12 msgid "Followers-only" @@ -6723,7 +7281,7 @@ msgstr "Start \"%(book_title)s\"" #: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 #, python-format msgid "Stop Reading \"%(book_title)s\"" -msgstr "" +msgstr "Stopp lesing av \"%(book_title)s\"" #: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 #: bookwyrm/templates/snippets/shelf_selector.html:53 @@ -6766,7 +7324,7 @@ msgstr "Denne rapporten vil bli sendt til %(site_name)s sine moderatorer for gje #: bookwyrm/templates/snippets/report_modal.html:36 msgid "Links from this domain will be removed until your report has been reviewed." -msgstr "Lenker fra dette domenet vil fjernes fram til rapporten din er ferbigbehandlet." +msgstr "Lenker fra dette domenet vil fjernes fram til rapporten din er ferdigbehandlet." #: bookwyrm/templates/snippets/report_modal.html:41 msgid "More info about this report:" @@ -6808,6 +7366,10 @@ msgstr "Slutt å lese" msgid "Finish reading" msgstr "Fullfør lesing" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Vis vurdering" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Vis status" @@ -6815,7 +7377,7 @@ msgstr "Vis status" #: bookwyrm/templates/snippets/status/content_status.html:91 #, python-format msgid "(Page %(page)s" -msgstr "" +msgstr "(side %(page)s" #: bookwyrm/templates/snippets/status/content_status.html:91 #, python-format @@ -6903,7 +7465,7 @@ msgstr "anmeldte %(book)s av %(book)s" -msgstr "anmeldte %(book)s" +msgstr "omtalte %(book)s" #: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 #, python-format @@ -6933,7 +7495,7 @@ msgstr "Slett status" #: bookwyrm/templates/snippets/status/layout.html:57 #: bookwyrm/templates/snippets/status/layout.html:58 msgid "Boost status" -msgstr "Støtt status" +msgstr "Fremhev status" #: bookwyrm/templates/snippets/status/layout.html:61 #: bookwyrm/templates/snippets/status/layout.html:62 @@ -6942,7 +7504,7 @@ msgstr "Lik status" #: bookwyrm/templates/snippets/status/status.html:10 msgid "boosted" -msgstr "støttet" +msgstr "fremhevet" #: bookwyrm/templates/snippets/status/status_options.html:7 #: bookwyrm/templates/snippets/user_options.html:7 @@ -6971,7 +7533,7 @@ msgstr "Vis mindre" #: bookwyrm/templates/snippets/user_active_tag.html:5 msgid "Moved" -msgstr "" +msgstr "Flyttet" #: bookwyrm/templates/snippets/user_active_tag.html:12 msgid "Deleted" @@ -7139,8 +7701,8 @@ msgstr "Ingen aktivitet enda!" #, python-format msgid "%(display_count)s follower" msgid_plural "%(display_count)s followers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(display_count)s følger" +msgstr[1] "%(display_count)s følgere" #: bookwyrm/templates/user/user_preview.html:31 #, python-format @@ -7163,8 +7725,9 @@ msgid "View profile and more" msgstr "Vis profil og mer" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Filen overskrider maksimal størrelse: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7175,33 +7738,17 @@ msgstr "Bokliste: %(name)s" #, python-format msgid "%(num)d book - by %(user)s" msgid_plural "%(num)d books - by %(user)s" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(num)d bok – av %(user)s" +msgstr[1] "%(num)d bøker – av %(user)s" #: bookwyrm/templatetags/utilities.py:49 #, python-format msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Statusoppdateringer fra {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "en ny brukerkonto" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/pl_PL/LC_MESSAGES/django.mo b/locale/pl_PL/LC_MESSAGES/django.mo index d8acdec42f..f8dbb8ab85 100644 Binary files a/locale/pl_PL/LC_MESSAGES/django.mo and b/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/locale/pl_PL/LC_MESSAGES/django.po b/locale/pl_PL/LC_MESSAGES/django.po index ce119da920..03be763147 100644 --- a/locale/pl_PL/LC_MESSAGES/django.po +++ b/locale/pl_PL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-02-26 20:08\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Polish\n" "Language: pl\n" @@ -33,56 +33,55 @@ msgstr "Jeden miesiąc" msgid "Does Not Expire" msgstr "Nie wygasa" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} użyć" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" -msgstr "Nieskończone" +msgstr "Bez ograniczeń" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Niepoprawne hasło" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Hasła nie są identyczne" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Niepoprawne hasło" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Data ukończenia czytania musi mieć miejsce po dacie rozpoczęcia." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." -msgstr "Data ukończenia czytania musi mieć miejsce po dacie rozpoczęcia." +msgstr "Data wstrzymania czytania musi mieć miejsce po dacie rozpoczęcia." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." -msgstr "Data wstrzymania czytania nie może być w przyszłości." +msgstr "Data wstrzymania czytania nie może mieć miejsca w przyszłości." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." -msgstr "Data zakończenia czytania nie może być w przyszłości." +msgstr "Data ukończenia czytania nie może mieć miejsca w przyszłości." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Niepoprawna nazwa użytkownika lub hasło" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Ta nazwa użytkownika jest już używana" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." -msgstr "Ten adres e-mail jest już w użyciu." +msgstr "Ten e-mail jest już używany." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Nie można zarejestrować tego adresu e-mail." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Niepoprawny kod" @@ -90,9 +89,9 @@ msgstr "Niepoprawny kod" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Ta domena jest zablokowana. Skontaktuj się z administratorem, jeśli uważasz, że wystąpił błąd." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." -msgstr "Ten odnośnik z typem pliku został już dodany do tej książki. Jeśli nie jest on widoczny, domena jest nadal sprawdzana." +msgstr "Ten odnośnik z typem pliku jest już dodany do tej książki. Jeśli nie jest widoczny, domena jest nadal weryfikowana." #: bookwyrm/forms/lists.py:26 msgid "List Order" @@ -102,8 +101,8 @@ msgstr "Sortowanie" msgid "Book Title" msgstr "Tytuł książki" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Ocena" @@ -145,8 +144,8 @@ msgstr "Zagrożenie" msgid "Automatically generated report" msgstr "Automatycznie wygenerowany raport" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -158,7 +157,7 @@ msgstr "Usunięte samodzielnie" #: bookwyrm/models/base_model.py:20 msgid "Self deactivation" -msgstr "Automatyczna dezaktywacja" +msgstr "Dezaktywowane samodzielnie" #: bookwyrm/models/base_model.py:21 msgid "Moderator suspension" @@ -172,33 +171,101 @@ msgstr "Usunięte przez moderatora" msgid "Domain block" msgstr "Blokada domeny" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audiobook" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Powieść ilustrowana" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Twarda oprawa" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Miękka oprawa" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Skomentuj" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recenzja" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Cytat" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Obserwuj" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Zablokuj" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "nieautoryzowane" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "błąd_połączenia" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "nieprawidłowa_relacja" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" -msgstr "Federacja" +msgstr "Sfederowane" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s nie jest prawidłowym remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s nie jest prawidłową nazwą użytkownika" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nazwa użytkownika" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." -msgstr "Ta nazwa użytkownika jest już w użyciu." +msgstr "Ta nazwa użytkownika jest już używana." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Ta nazwa użytkownika jest już w użyciu." msgid "Public" msgstr "Publiczne" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Publiczne" msgid "Unlisted" msgstr "Niepubliczne" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Niepubliczne" msgid "Followers" msgstr "Obserwujący" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Obserwujący" msgid "Private" msgstr "Prywatne" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktywne" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Zakończone" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Wstrzymane" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Import wstrzymany" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Błąd wczytywania książki" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Nie znaleziono pasującej książki" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "Błąd" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Bezpłatne" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Do kupienia" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Do wypożyczenia" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Zatwierdzone" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Skomentuj" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Rozwiązane zgłoszenie" @@ -363,125 +429,163 @@ msgstr "Zatwierdzona domena" msgid "Deleted item" msgstr "Usunięty element" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Status %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s komentuje %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s cytuje %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s ocenia %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s ocenia %(book_title)s: %(display_rating).1f gwiazdka" +msgstr[1] "%(display_name)s ocenia %(book_title)s: %(display_rating).1f gwiazdki" +msgstr[2] "%(display_name)s ocenia %(book_title)s: %(display_rating).1f gwiazdek" +msgstr[3] "%(display_name)s ocenia %(book_title)s: %(display_rating).1f gwiazdek" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Oceny" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Komentarze" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Cytaty" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Wszystko inne" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Strona główna" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Start" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Oś czasu książek" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Książki" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Angielski)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" -msgstr "Català (Kataloński)" +msgstr "Català (kataloński)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" -msgstr "Deutsch (Niemiecki)" +msgstr "Deutsch (niemiecki)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" -msgstr "Esperanto (Esperanto)" +msgstr "Esperanto (esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" -msgstr "Español (Hiszpański)" +msgstr "Español (hiszpański)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" -msgstr "Euskara (Baskijski)" +msgstr "Euskara (baskijski)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" -msgstr "Galego (Galicyjski)" +msgstr "Galego (galicyjski)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" -msgstr "Italiano (Włoski)" +msgstr "Italiano (włoski)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (koreański)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" -msgstr "Suomi (Fiński)" +msgstr "Suomi (fiński)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" -msgstr "Français (Francuski)" +msgstr "Français (francuski)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" -msgstr "Lietuvių (Litewski)" +msgstr "Lietuvių (litewski)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" -msgstr "Holenderski" +msgstr "Nederlands (holenderski)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" -msgstr "Norsk (Norweski)" +msgstr "Norsk (norweski)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "polski" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" -msgstr "Português do Brasil (Brazylijski Portugalski)" +msgstr "Português do Brasil (portugalski — Brazylia)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" -msgstr "Português Europeu (Portugalski)" +msgstr "Português Europeu (portugalski — Portugalia)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" -msgstr "Română (Rumuński)" +msgstr "Română (rumuński)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" -msgstr "Svenska (Szwedzki)" +msgstr "Svenska (szwedzki)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" -msgstr "Українська (Ukraiński)" +msgstr "Українська (ukraiński)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" -msgstr "简体中文 (Uproszczony chiński)" +msgstr "简体中文 (chiński — uproszczony)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" -msgstr "繁體中文 (Tradycyjny chiński)" +msgstr "繁體中文 (chiński — tradycyjny)" #: bookwyrm/templates/403.html:5 msgid "Oh no!" @@ -517,12 +621,8 @@ msgid "The file you are uploading is too large." msgstr "Przesyłany plik jest za duży." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -" Możesz spróbować przesłać mniejszy plik lub poprosić swojego administratora serwera BookWyrm o zwiększenie wartości ustawienia DATA_UPLOAD_MAX_MEMORY_SIZE.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Możesz spróbować użyć mniejszego pliku lub zapytać administratora swojego serwera BookWyrm o zwiększenie wartości ustawienia DATA_UPLOAD_MAX_MEMORY_SIZE." #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -534,7 +634,7 @@ msgstr "Błąd serwera" #: bookwyrm/templates/500.html:9 msgid "Something went wrong! Sorry about that." -msgstr "Coś poszło nie tak! Przepraszamy za to." +msgstr "Coś poszło nie tak! Przykro nam." #: bookwyrm/templates/about/about.html:9 #: bookwyrm/templates/about/layout.html:35 @@ -545,7 +645,7 @@ msgstr "Informacje" #: bookwyrm/templates/get_started/layout.html:22 #, python-format msgid "Welcome to %(site_name)s!" -msgstr "Witaj na %(site_name)s!" +msgstr "Witaj w %(site_name)s!" #: bookwyrm/templates/about/about.html:25 #, python-format @@ -607,7 +707,7 @@ msgstr "Regulamin" #: bookwyrm/templates/about/layout.html:54 #: bookwyrm/templates/snippets/footer.html:34 msgid "Impressum" -msgstr "" +msgstr "Impressum" #: bookwyrm/templates/about/layout.html:11 msgid "Active users:" @@ -618,7 +718,7 @@ msgid "Statuses posted:" msgstr "Zamieszczonych statusów:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Wersja oprogramowania:" @@ -720,10 +820,10 @@ msgstr "Przekłada się to na średnio %(pages)s stron na książkę." #, python-format msgid "(No page data was available for %(no_page_number)s book)" msgid_plural "(No page data was available for %(no_page_number)s books)" -msgstr[0] "(Nie mamy informacji o liczbie stron dla książki %(no_page_number)s)" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "(Brak informacji o liczbie stron dla %(no_page_number)s książki)" +msgstr[1] "(Brak informacji o liczbie stron dla %(no_page_number)s książek)" +msgstr[2] "(Brak informacji o liczbie stron dla %(no_page_number)s książek)" +msgstr[3] "(Brak informacji o liczbie stron dla %(no_page_number)s książek)" #: bookwyrm/templates/annual_summary/layout.html:150 msgid "Their shortest read this year…" @@ -732,7 +832,7 @@ msgstr "Najkrócej wczytano się w…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -754,9 +854,9 @@ msgstr "…a najdłużej w" msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" msgstr[0] "%(display_name)s obiera sobie za cel przeczytanie %(goal)s książki w %(year)s roku,
    a osiąga już %(goal_percent)s %% tego celu" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[1] "%(display_name)s obiera sobie za cel przeczytanie %(goal)s książek w %(year)s roku
    i osiąga już %(goal_percent)s%% tego celu" +msgstr[2] "%(display_name)s obiera sobie za cel przeczytanie %(goal)s książek w %(year)s roku
    i osiąga już %(goal_percent)s%% tego celu" +msgstr[3] "%(display_name)s obiera sobie za cel przeczytanie %(goal)s książek w %(year)s roku
    i osiąga już %(goal_percent)s%% tego celu" #: bookwyrm/templates/annual_summary/layout.html:211 msgid "Way to go!" @@ -816,44 +916,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Pokaż na Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Strona WWW" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Zobacz wpis ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Zobacz na ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Wczytaj dane" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Pokaż na OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Pokaż na Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Pokaż na LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Pokaż na Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Książki autorstwa %(name)s" @@ -890,8 +994,8 @@ msgid "Name:" msgstr "Nazwa:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Oddziel kilka wartości przecinkami." @@ -903,50 +1007,54 @@ msgstr "O mnie:" msgid "Wikipedia link:" msgstr "Odnośnik do Wikipedii:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Strona WWW:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data urodzenia:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data śmierci:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identyfikatory autora" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Klucz Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Klucz Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Klucz Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -954,7 +1062,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -968,14 +1076,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Zapisz" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -985,6 +1093,7 @@ msgstr "Zapisz" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -1002,34 +1111,38 @@ msgstr "Wczytanie danych spowoduje połączenie z %(source_name)sdifferent edition of this book is on your %(shelf_name)s shelf." msgstr "Inna edycja tej książki znajduje się już na Twojej półce %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Twoja aktywność czytania" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Dodaj daty czytania" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Nie masz żadnej aktywności czytania dla tej książki." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Twoje opinie" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Twoje komentarze" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Twoje cytaty" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Tematy" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Miejsca" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1107,18 +1220,18 @@ msgstr "Miejsca" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listy" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Dodaj do listy" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1141,40 +1254,50 @@ msgid "Copied ISBN!" msgstr "Skopiowano ISBN!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Numer OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Dźwiękowy ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ID ISFDB:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "ID Finna:" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Dodaj okładkę" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Prześlij okładkę:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Wczytaj okładkę z adresu URL:" @@ -1248,7 +1371,7 @@ msgid "This is a new work" msgstr "To jest nowe dzieło" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1301,125 +1424,129 @@ msgstr "Wstecz" msgid "Title:" msgstr "Tytuł:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Sortuj Według Tytułu:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Podtytuł:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Seria:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Numer serii:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Języki:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Tematy:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Dodaj temat" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Usuń temat" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Dodaj inny temat" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publikacja" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Wydawca:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Data pierwszej publikacji:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data publikacji:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autorzy" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Usuń %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Strona autora dla %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Dodaj autorów:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Dodaj autora" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Jan Kowalski" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Dodaj kolejnego autora" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Okładka" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Właściwości fizyczne" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Szczegóły formatu:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Strony:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identyfikatory książki" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "ID Openlibrary:" @@ -1447,7 +1574,7 @@ msgid "Any" msgstr "Dowolna" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Język:" @@ -1508,12 +1635,15 @@ msgid "Domain" msgstr "Domena" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1525,8 +1655,8 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1572,8 +1702,8 @@ msgstr "Opuszczasz BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Ten odnośnik przekieruje Cię do: %(link_url)s.
    Czy chcesz się tam udać?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Kontynuuj" @@ -1629,7 +1759,19 @@ msgstr "Niesortowana książka" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Wczytywanie danych wywoła połączenie z %(source_name)s oraz sprawdzenie jakichkolwiek metadanych o tej książce, które nie są tutaj obecne. Istniejące metadane nie zostaną zastąpione." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Edytuj opinię" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Edytuj cytat" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Edytuj komentarz" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Edytuj status" @@ -1656,7 +1798,7 @@ msgstr "Kod potwierdzający:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Prześlij" @@ -1738,12 +1880,12 @@ msgstr "Polecane" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1868,8 +2010,8 @@ msgstr "Cześć," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm jest hostowane na %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm hostowane na %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1887,8 +2029,8 @@ msgstr "Dołącz" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Dowiedz się więcej o %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Uzyskaj więcej informacji o %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2064,19 +2206,19 @@ msgid "Add to your books" msgstr "Dodaj do swoich książek" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Do przeczytania" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Obecnie czytane" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2085,7 +2227,7 @@ msgid "Read" msgstr "Przeczytane" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Zaprzestano czytania" @@ -2118,7 +2260,7 @@ msgstr "Możesz dodawać książki, gdy zaczniesz używać %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Szukaj" @@ -2774,6 +2916,7 @@ msgstr "Możesz utworzyć lub dołączyć do grupy z pozostałymi użytkownikami #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupy" @@ -2890,11 +3033,13 @@ msgid "You have %(display_left)s left." msgstr "Pozostało %(display_left)s." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Ostatnie importy zajmowały średnio %(hours)s godzin." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Ostatnie importy zajmowały średnio %(minutes)s minut." @@ -2920,69 +3065,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Możesz pobrać swoje dane Goodreads ze strony Importuj/Eksportuj na swoim koncie Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Plik danych:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Uwzględnij recenzje" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Ustawienia prywatności dla importowanych recenzji:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Utwórz nowe półki, jeśli nie istnieją" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Ustawienie prywatności dla importowanych opinii i półek:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importuj" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Limit importów osiągnięty." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Importowanie jest tymczasowo wyłączone; dziękujemy za Twoją cierpliwość." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Najnowsze recenzje" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Data utworzenia" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Najnowsza aktualizacja" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Elementy" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Brak ostatnich importów" @@ -3006,20 +3163,24 @@ msgid "Imports" msgstr "Importowanie" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Import rozpoczęty:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "W trakcie" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Odśwież" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Wstrzymaj import" @@ -3038,6 +3199,7 @@ msgid "Review items" msgstr "Przejrzyj elementy" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3047,6 +3209,7 @@ msgstr[2] "Błąd importowania %(display_counter)s elementów." msgstr[3] "Błąd importowania %(display_counter)s elementów." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Wyświetl i rozwiąż problemy z importowaniem" @@ -3055,12 +3218,14 @@ msgid "Row" msgstr "Wiersz" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Tytuł" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3069,8 +3234,8 @@ msgid "Openlibrary key" msgstr "Klucz Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor" @@ -3078,13 +3243,9 @@ msgstr "Autor" msgid "Shelf" msgstr "Półka" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recenzja" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Książka" @@ -3102,6 +3263,8 @@ msgid "View imported review" msgstr "Pokaż importowaną recenzję" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Zaimportowane" @@ -3137,116 +3300,121 @@ msgstr "Jeśli chcesz przenieść jakiekolwiek statusy (komentarze, recenzje lub #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." -msgstr "Obecnie możesz importować jednego użytkownika co %(user_import_hours)s godzin." +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "Obecnie możesz importować jednego użytkownika co %(hours)s godzin." #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" -msgstr "" +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "Możesz importować następny plik użytkownika o %(next_time)s" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Krok 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "Wybierz plik eksportu wygenerowany z innego konta BookWyrm. Plik powinien być w formacie .tar.gz." -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Krok 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "Odznacz wszelkie pola wyboru danych, których nie chcesz zawrzeć w swoim imporcie." -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Profil użytkownika" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "Nadpisuje nazwę wyświetlaną, podsumowanie oraz awatar" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "Ustawienia użytkownika" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "Nadpisuje:" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" -msgstr "" +msgstr "Czy wymagana jest ręczna weryfikacja osób chcących obserwować twoje konto" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" -msgstr "" +msgstr "Czy obserwowani/obserwujący mają być wyświetlani na twoim profilu" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" -msgstr "" +msgstr "Czy twój cel czytania ma być wyświetlany na twoim profilu" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" -msgstr "" +msgstr "Czy chcesz widzieć sugestie obserwowania" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" -msgstr "" +msgstr "Czy twoje konto ma być sugerowane pozostałym" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" -msgstr "" +msgstr "Twoja strefa czasowa" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" -msgstr "" +msgstr "Twoje domyślne ustawienie prywatności wpisów" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" -msgstr "" +msgstr "Obserwowani i obserwujący" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" -msgstr "" +msgstr "Blokowanie osób" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" -msgstr "" +msgstr "Cele czytania" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" -msgstr "" +msgstr "Nadpisuje cele czytania dla wszystkich lat zawartych w pliku importu" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" -msgstr "" +msgstr "Półki" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" -msgstr "" +msgstr "Historia czytania" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" -msgstr "" +msgstr "Recenzje książek" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" -msgstr "" +msgstr "Komentarze o książkach" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" -msgstr "" +msgstr "Listy książek" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" -msgstr "" +msgstr "Zapisane listy" #: bookwyrm/templates/import/manual_review.html:5 #: bookwyrm/templates/import/troubleshoot.html:4 @@ -3255,7 +3423,7 @@ msgstr "Rozwiązywanie problemów z importowaniem" #: bookwyrm/templates/import/manual_review.html:21 msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." -msgstr "" +msgstr "Zatwierdzenie sugestii spowoduje dodanie na stałe sugerowanej książki do twoich półek oraz powiązanie daty czytania, recenzji i ocen z tą książką." #: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/lists/curate.html:71 @@ -3268,15 +3436,18 @@ msgid "Reject" msgstr "Odrzuć" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" -msgstr "" +msgstr "Elementy z błędami" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" -msgstr "" +msgstr "Rozwiązywanie problemów" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Ponowienie importu może naprawić problemy, takie jak:" @@ -3285,21 +3456,96 @@ msgid "The book has been added to the instance since this import" msgstr "Książka została dodana do tej instancji od czasu tego importu" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." -msgstr "" +msgstr "Tymczasowy błąd lub przekroczenie czasu połączenia spowodowały brak dostępu do zewnętrznego źródła danych." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" -msgstr "" +msgstr "BookWyrm zostało zaktualizowane z poprawką od czasu tego importu" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "Skontaktuj się ze swoim administratorem lub zgłoś problem, jeśli widzisz nieoczekiwane elementy z błędami." + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "Status importu użytkownika" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "Status ponownego importu użytkownika" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" msgstr "" +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statusów" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "Obserwowani i blokowani" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Zaimportowane książki" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "Rozwiązywanie problemów z importem użytkownika" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "Twoje konto nie zostało ustawione jako alias dla oryginalnego konta użytkownika" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "Ponowienie importu użytkownika jest zbędne, gdy:" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "Użytkownik, status lub serwer BookWyrm został usunięty po utworzeniu pliku importu" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "Importujesz statusy po usunięciu starego konta" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "Obecnie możesz importować lub ponowić import jednego użytkownika co %(hours)s godzin." + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "Możesz ponowić ten import o %(next_time)s" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Relacja" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Powód" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Utwórz konto" @@ -3309,19 +3555,19 @@ msgstr "Niestety, ale ten kod zaproszenia jest już nieważny." #: bookwyrm/templates/landing/landing.html:9 msgid "Recent Books" -msgstr "" +msgstr "Ostatnie książki" #: bookwyrm/templates/landing/layout.html:17 msgid "Decentralized" -msgstr "" +msgstr "Zdecentralizowane" #: bookwyrm/templates/landing/layout.html:23 msgid "Friendly" -msgstr "" +msgstr "Przyjazne" #: bookwyrm/templates/landing/layout.html:29 msgid "Anti-Corporate" -msgstr "" +msgstr "Antykorporacyjne" #: bookwyrm/templates/landing/layout.html:46 #, python-format @@ -3350,7 +3596,7 @@ msgid "Login" msgstr "Login" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Zaloguj się" @@ -3366,22 +3612,22 @@ msgstr "Udało się! Adres e-mail został potwierdzony." msgid "Username:" msgstr "Nazwa użytkownika:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Hasło:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Zapomniano hasła?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Więcej o tej stronie" @@ -3409,7 +3655,7 @@ msgstr "Wyzeruj hasło" msgid "Reactivate Account" msgstr "Ponownie aktywuj konto" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Ponownie aktywuj konto" @@ -3419,8 +3665,8 @@ msgid "%(site_name)s search" msgstr "Przeszukaj %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Szukaj książki, użytkownika lub listy" +msgid "Search for a book, author, user, or list" +msgstr "Szukaj książek, autorów, użytkowników lub list" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3436,7 +3682,7 @@ msgstr "hasło" #: bookwyrm/templates/layout.html:136 msgid "Show/Hide password" -msgstr "" +msgstr "Pokaż/Ukryj hasło" #: bookwyrm/templates/layout.html:150 msgid "Join" @@ -3613,7 +3859,7 @@ msgstr "Pomyślnie dodano książkę do tej listy!" #: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty." -msgstr "" +msgstr "Obecnie ta lista jest pusta." #: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" @@ -3630,12 +3876,14 @@ msgstr "Dodane przez %(username)s" #: bookwyrm/templates/lists/list.html:146 msgid "List position" -msgstr "" +msgstr "Pozycja listy" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" -msgstr "" +msgstr "Ustaw" #: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_follower_button.html:4 @@ -3646,11 +3894,11 @@ msgstr "Usuń" #: bookwyrm/templates/lists/list.html:181 #: bookwyrm/templates/lists/list.html:198 msgid "Sort List" -msgstr "" +msgstr "Sortowanie listy" #: bookwyrm/templates/lists/list.html:191 msgid "Direction" -msgstr "" +msgstr "Kierunek" #: bookwyrm/templates/lists/list.html:205 msgid "Add Books" @@ -3692,7 +3940,7 @@ msgstr "Zapisane" #: bookwyrm/templates/lists/list_items.html:50 msgid "No lists found." -msgstr "" +msgstr "Brak list." #: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 msgid "Your Lists" @@ -3709,15 +3957,15 @@ msgstr "Zapisane listy" #: bookwyrm/templates/moved.html:27 #, python-format msgid "You have moved your account to %(username)s" -msgstr "" +msgstr "Przeniesiono swoje konto do %(username)s" #: bookwyrm/templates/moved.html:32 msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." -msgstr "" +msgstr "Możesz cofnąć przeniesienie, aby przywrócić pełną funkcjonalność, ale niektóre osoby mogły już anulować obserwację tego konta." #: bookwyrm/templates/moved.html:42 msgid "Undo move" -msgstr "" +msgstr "Cofnij przeniesienie" #: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 msgid "Log out" @@ -3935,10 +4183,10 @@ msgstr "%(related_user)s zaprasza Cię do #, python-format msgid "New invite request awaiting response" msgid_plural "%(display_count)s new invite requests awaiting response" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Nowa prośba o zaproszenie oczekuje na odpowiedź" +msgstr[1] "%(display_count)s nowe prośby o zaproszenie oczekują na odpowiedź" +msgstr[2] "%(display_count)s nowych próśb o zaproszenie oczekuje na odpowiedź" +msgstr[3] "%(display_count)s nowych próśb o zaproszenie oczekuje na odpowiedź" #: bookwyrm/templates/notifications/items/join.html:16 #, python-format @@ -3963,11 +4211,11 @@ msgstr "%(related_user)s i jeszcze %(other #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "Nowy odnośnik domeny wymaga sprawdzenia" +msgstr[1] "%(display_count)s nowe odnośniki domeny wymagają sprawdzenia" +msgstr[2] "%(display_count)s nowych odnośników domeny wymaga sprawdzenia" +msgstr[3] "%(display_count)s nowych odnośników domeny wymaga sprawdzenia" #: bookwyrm/templates/notifications/items/mention.html:20 #, python-format @@ -3992,12 +4240,12 @@ msgstr "%(related_user)s wspomina Cię w < #: bookwyrm/templates/notifications/items/move_user.html:18 #, python-format msgid "%(related_user)s has moved to %(username)s" -msgstr "" +msgstr "%(related_user)s przenosi się do %(username)s" #: bookwyrm/templates/notifications/items/move_user.html:25 #, python-format msgid "%(related_user)s has undone their move" -msgstr "" +msgstr "%(related_user)s anuluje swoje przeniesienie" #: bookwyrm/templates/notifications/items/remove.html:17 #, python-format @@ -4041,7 +4289,7 @@ msgstr[3] "%(display_count)s nowych zgłoszeń wymaga u #: bookwyrm/templates/notifications/items/status_preview.html:4 #: bookwyrm/templates/snippets/status/content_status.html:62 msgid "Content warning" -msgstr "" +msgstr "Ostrzeżenie o treści" #: bookwyrm/templates/notifications/items/update.html:16 #, python-format @@ -4061,12 +4309,12 @@ msgstr "zmienia opis dla %(group_name)s" #: bookwyrm/templates/notifications/items/user_export.html:14 #, python-format msgid "Your user export is ready." -msgstr "" +msgstr "Twój eksport użytkownika jest gotowy." #: bookwyrm/templates/notifications/items/user_import.html:14 #, python-format msgid "Your user import is complete." -msgstr "" +msgstr "Twój import użytkownika został ukończony." #: bookwyrm/templates/notifications/notifications_page.html:19 msgid "Delete notifications" @@ -4138,23 +4386,23 @@ msgstr "Obserwujesz już %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Wysłano już prośbę o obserwowanie %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Obserwuj %(username)s na fediverse" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Obserwuj %(username)s z innego konta w Fediverse, takiego jak BookWyrm, Mastodon lub Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" -msgstr "" +msgstr "Obserwuj!" #: bookwyrm/templates/ostatus/remote_follow_button.html:15 msgid "Follow on Fediverse" @@ -4193,99 +4441,31 @@ msgstr "Najpierw, logowanie..." msgid "Follow %(username)s" msgstr "Obserwuj %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Obserwujesz %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Uwierzytelnianie dwuskładnikowe" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Zaktualizowano ustawienia uwierzytelniania" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Zapisz gdzieś lub skopiuj i wklej te kody do bezpiecznego miejsca." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Należy ich użyć w dokładnie takiej kolejności i nie zobaczysz ich już nigdy więcej." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Uwierzytelnianie dwuskładnikowe jest aktywne dla Twojego konta." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Wyłącz 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Możesz wygenerować kody zapasowe do użycia, gdy nie będziesz mieć dostępu do aplikacji uwierzytelniającej. Po wygenerowaniu nowych kodów, wszelkie poprzednie kody zapasowe utracą ważność." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Wygeneruj kody zapasowe" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Zeskanuj kod QR w aplikacji uwierzytelniającej i wprowadź kod z aplikacji do pola poniżej, aby skonfigurować aplikację." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nazwa konta:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Kod:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Wprowadź kod z aplikacji:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Możesz zwiększyć bezpieczeństwo swojego konta aktywując uwierzytelnianie dwuskładnikowe (2FA). Polega to na wpisywaniu jednorazowego kodu z aplikacji na telefonie, takiej jak Authy, Google Authenticator lub Microsoft Authenticator przy każdym logowaniu." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Potwierdź hasło, aby skonfigurować 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Skonfiguruj 2FA" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 #: bookwyrm/templates/preferences/move_user.html:39 msgid "Move Account" -msgstr "" +msgstr "Przenieś konto" #: bookwyrm/templates/preferences/alias_user.html:7 #: bookwyrm/templates/preferences/alias_user.html:34 msgid "Create Alias" -msgstr "" +msgstr "Utwórz alias" #: bookwyrm/templates/preferences/alias_user.html:12 msgid "Add another account as an alias" -msgstr "" +msgstr "Dodaj inne konto jako alias" #: bookwyrm/templates/preferences/alias_user.html:16 msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "" +msgstr "Oznaczenie innego konta jako alias jest wymagane, jeśli chcesz przenieść tamto konto do tego konta." #: bookwyrm/templates/preferences/alias_user.html:19 msgid "This is a reversable action and will not change the functionality of this account." @@ -4298,16 +4478,16 @@ msgstr "" #: bookwyrm/templates/preferences/alias_user.html:30 #: bookwyrm/templates/preferences/move_user.html:35 msgid "Confirm your password:" -msgstr "" +msgstr "Potwierdź swoje hasło:" #: bookwyrm/templates/preferences/alias_user.html:39 #: bookwyrm/templates/preferences/layout.html:28 msgid "Aliases" -msgstr "" +msgstr "Aliasy" #: bookwyrm/templates/preferences/alias_user.html:49 msgid "Remove alias" -msgstr "" +msgstr "Usuń alias" #: bookwyrm/templates/preferences/blocks.html:4 #: bookwyrm/templates/preferences/blocks.html:7 @@ -4366,6 +4546,12 @@ msgstr "Trwale usuń konto" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Usunięcia konta nie można cofnąć. Nazwy użytkownika nie będzie można użyć w przyszłości." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Wyłącz 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe" @@ -4395,113 +4581,179 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Wyświetlanie" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Prywatność" #: bookwyrm/templates/preferences/edit_user.html:69 msgid "Show reading goal prompt in feed" -msgstr "" +msgstr "Pokaż monit o cel czytania na kanale" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "Pokaż oceny" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Pokazuj sugerowanych użytkowników" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Pokazuj to konto wśród proponowanych użytkowników" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Twoje konto będzie pokazywanie w katalogu i może być proponowane pozostałym użytkownikom BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Preferowana strefa czasowa: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Motyw:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Ręcznie zatwierdzaj obserwujących" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Ukryj obserwujących i obserwowanych na profilu" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Domyślna prywatność wpisu:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" -msgstr "" +msgstr "Szukasz ustawień prywatności półki? Możesz ustawić oddzielne poziomy widoczności dla każdej ze swoich półek. Przejdź do Twoje książki, wybierz półkę z paska kart i naciśnij na \"Edytuj półkę\"." -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" -msgstr "" +msgstr "Eksportuj konto BookWyrm" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." -msgstr "" +msgstr "Tutaj możesz utworzyć plik eksportu. Umożliwi to przeniesienie twoich danych na inne konto BookWyrm." -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " -msgstr "" +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Twój plik będzie zawierać:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Większość ustawień użytkownika" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "Twoje własne listy i zapisane listy" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "Listę obserwowanych i blokowanych użytkowników" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "Twój plik nie będzie zawierać:" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Wiadomości bezpośrednich" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Odpowiedzi na twoje statusy" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Ulubionych" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." -msgstr "" +msgstr "Na swoim nowym koncie BookWyrm możesz wybrać elementy do importu: nie musisz importować wszystkiego, co zostało wyeksportowane." -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "Nowe eksporty użytkownika są obecnie wyłączone." + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "Ostatnie eksporty zajęły średnio %(hours)s godzin." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "Ostatnie eksporty zajęły średnio %(minutes)s minut." + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" -msgstr "" +msgstr "Data" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" -msgstr "" +msgstr "Rozmiar" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" -msgstr "" +msgstr "Pobierz swój eksport" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "Archiwum nie jest już dostępne" #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 msgid "Export Book List" -msgstr "" +msgstr "Eksportuj listę książek" #: bookwyrm/templates/preferences/export.html:13 msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." @@ -4515,9 +4767,13 @@ msgstr "Pobierz plik" msgid "Account" msgstr "Konto" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" -msgstr "" +msgstr "Przenieś konto" #: bookwyrm/templates/preferences/layout.html:39 msgid "Data" @@ -4529,7 +4785,7 @@ msgstr "Relacje" #: bookwyrm/templates/preferences/move_user.html:12 msgid "Migrate account to another server" -msgstr "" +msgstr "Przenieś konto na inny serwer" #: bookwyrm/templates/preferences/move_user.html:16 msgid "Moving your account will notify all your followers and direct them to follow the new account." @@ -4550,6 +4806,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Uwierzytelnianie dwuskładnikowe" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Zaktualizowano ustawienia uwierzytelniania" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Zapisz gdzieś lub skopiuj i wklej te kody do bezpiecznego miejsca." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Należy ich użyć w dokładnie takiej kolejności i nie zobaczysz ich już nigdy więcej." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Uwierzytelnianie dwuskładnikowe jest aktywne dla Twojego konta." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Możesz wygenerować kody zapasowe do użycia, gdy nie będziesz mieć dostępu do aplikacji uwierzytelniającej. Po wygenerowaniu nowych kodów, wszelkie poprzednie kody zapasowe utracą ważność." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Wygeneruj kody zapasowe" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Zeskanuj kod QR w aplikacji uwierzytelniającej i wprowadź kod z aplikacji do pola poniżej, aby skonfigurować aplikację." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nazwa konta:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Kod:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Wprowadź kod z aplikacji:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Możesz zwiększyć bezpieczeństwo swojego konta aktywując uwierzytelnianie dwuskładnikowe (2FA). Polega to na wpisywaniu jednorazowego kodu z aplikacji na telefonie, takiej jak Authy, Google Authenticator lub Microsoft Authenticator przy każdym logowaniu." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Potwierdź hasło, aby skonfigurować 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Skonfiguruj 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4595,6 +4969,7 @@ msgstr "Rozpoczęto czytanie" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Postęp" @@ -4727,8 +5102,8 @@ msgstr "Zapytanie" msgid "Search type" msgstr "Typ wyszukiwania" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4738,12 +5113,12 @@ msgstr "Typ wyszukiwania" msgid "Users" msgstr "Użytkownicy" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Nie znaleziono wyników dla \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4767,7 +5142,7 @@ msgstr "Edytuj" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Ogłoszenia" @@ -4785,13 +5160,13 @@ msgstr "Nie" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data rozpoczęcia:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data zakończenia:" @@ -4860,7 +5235,6 @@ msgstr "Kolor:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Reguły automatycznej moderacji" @@ -4873,35 +5247,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Użytkownicy lub statusy, które zostały już zgłoszone (niezależenie od tego, czy zgłoszenie zostało rozwiązane) nie zostaną oznaczone." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Harmonogram:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Ostatnie uruchomienie:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Uruchomień w sumie:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Włączone:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Usuń harmonogram" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Uruchom teraz" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Data ostatniego uruchomienia nie zostanie zaktualizowana" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Zaplanuj skanowanie" @@ -4946,6 +5328,7 @@ msgstr "Usuń regułę" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Status Celery" @@ -4955,25 +5338,26 @@ msgstr "" #: bookwyrm/templates/settings/celery.html:22 msgid "Queues" -msgstr "" +msgstr "Kolejki" #: bookwyrm/templates/settings/celery.html:26 msgid "Streams" -msgstr "" +msgstr "Transmisje" #: bookwyrm/templates/settings/celery.html:32 msgid "Broadcast" -msgstr "" +msgstr "Transmituj" #: bookwyrm/templates/settings/celery.html:38 msgid "Inbox" -msgstr "" +msgstr "Odebrane" #: bookwyrm/templates/settings/celery.html:51 msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -5017,8 +5401,9 @@ msgid "Active Tasks" msgstr "Aktywne zadania" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -5031,6 +5416,8 @@ msgid "Run time" msgstr "Czas wykonywania" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Priorytet" @@ -5063,6 +5450,66 @@ msgstr "" msgid "Errors" msgstr "Błędy" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Powód dezaktywacji:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5070,7 +5517,7 @@ msgid "Dashboard" msgstr "Panel" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Użytkowników w sumie" @@ -5079,40 +5526,36 @@ msgstr "Użytkowników w sumie" msgid "Active this month" msgstr "Aktywnych w tym miesiącu" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statusów" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Aktywność instancji" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Częstotliwość:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dni" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Tygodnie" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "" @@ -5124,9 +5567,13 @@ msgstr "" msgid "Statuses posted" msgstr "" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "Czy chcesz włączyć automatyczne sprawdzanie nowych wydań BookWyrm? (zalecane)" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "Zaplanuj sprawdzenie" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5216,7 +5663,7 @@ msgstr "Brak obecnie zablokowanych domen e-mail" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Konfiguracja e-mail" @@ -5229,7 +5676,7 @@ msgid "Successfully sent test email." msgstr "Wysłano testowego e-maila." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Nadawca e-maila:" @@ -5277,15 +5724,6 @@ msgstr "Wyślij testowego e-maila" msgid "Add instance" msgstr "Dodaj instancję" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5361,12 +5799,6 @@ msgstr "Notatki" msgid "No notes" msgstr "Brak notatek" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Zablokuj" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Wszyscy użytkownicy z tej instancji zostaną zdezaktywowani." @@ -5419,6 +5851,49 @@ msgstr "Oprogramowanie" msgid "No instances found" msgstr "Brak instancji" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Zakończone" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5458,14 +5933,14 @@ msgstr "Włącz importowanie" #: bookwyrm/templates/settings/imports/imports.html:64 msgid "Limit the amount of imports" -msgstr "Ograniczenie ilości importów" +msgstr "Ograniczenie liczby importów" #: bookwyrm/templates/settings/imports/imports.html:75 msgid "Some users might try to import a large number of books, which you want to limit." -msgstr "Część użytkowników może podjąć próbę importu dużej ilości książek, co możesz ograniczyć." +msgstr "Część użytkowników może podjąć próbę importu dużej liczby książek, co możesz ograniczyć." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Ustaw wartość na 0, aby nie wymuszać żadnego ograniczenia." @@ -5485,62 +5960,81 @@ msgstr "dni." msgid "Set limit" msgstr "Ustaw ograniczenie" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Zakończone" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "Obecnie nie jest możliwe dostarczenie eksportów użytkownika z użyciem magazynu Azure." -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Użytkownik" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Data przesłania" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Oczekujące" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Zakończone elementy" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Nie znaleziono pasujących importów." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5704,6 +6198,10 @@ msgstr "Moderacja" msgid "Reports" msgstr "Zgłoszenia" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5714,22 +6212,26 @@ msgstr "" msgid "System" msgstr "System" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Status Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Ustawienia instancji" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Ustawienia witryny" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5737,7 +6239,7 @@ msgstr "Ustawienia witryny" msgid "Registration" msgstr "Rejestracja" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5943,6 +6445,61 @@ msgstr "Rozwiązane" msgid "No reports found." msgstr "Nie znaleziono zgłoszeń." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6188,10 +6745,6 @@ msgstr "" msgid "Discoverable:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Powód dezaktywacji:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Szczegóły instancji" @@ -6285,7 +6838,7 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Wygląda na to, że Twoja domena jest niepoprawnie skonfigurowana. Nie powinna zawierać protokołu oraz ukośników." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 @@ -6296,39 +6849,39 @@ msgstr "Ustawienia" msgid "Instance domain:" msgstr "Domena instancji:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokół:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Użycie S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Domyślny język interfejsu:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Włącz podgląd obrazów:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Włącz miniatury obrazów:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Czy wszystko wygląda poprawnie?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "To ostatnia szansa na ustawienie domeny i protokołu." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Możesz zmienić ustawienia swojej instancji w pliku .env na swoim serwerze." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Pokaż instrukcje instalacji" @@ -6345,7 +6898,7 @@ msgid "Need help?" msgstr "Potrzebujesz pomocy?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Utwórz półkę" @@ -6353,16 +6906,16 @@ msgstr "Utwórz półkę" msgid "Edit Shelf" msgstr "Edytuj półkę" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Wszystkie książki" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importuj książki" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" @@ -6371,43 +6924,56 @@ msgstr[1] "%(formatted_count)s książki" msgstr[2] "%(formatted_count)s książek" msgstr[3] "%(formatted_count)s książek" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(wyświetlanie %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Edytuj półkę" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Usuń półkę" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Na półce" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Rozpoczęte" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Ukończone" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Do" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Półka jest pusta." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Zaproś" @@ -6511,10 +7077,6 @@ msgstr "Zawiera treść fabuły!" msgid "Comment:" msgstr "Komentarz:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "" @@ -6540,7 +7102,7 @@ msgstr "Na stronie:" msgid "At percent:" msgstr "" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "" @@ -6585,10 +7147,6 @@ msgstr "Zastosuj filtry" msgid "Follow @%(username)s" msgstr "Obserwuj @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Obserwuj" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Cofnij prośbę o obserwowanie" @@ -6621,7 +7179,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "" #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Brak ocen" @@ -6635,7 +7193,7 @@ msgstr[2] "%(half_rating)s gwiazdek" msgstr[3] "%(half_rating)s gwiazdek" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6872,6 +7430,10 @@ msgstr "Przerwij czytanie" msgid "Finish reading" msgstr "Ukończ czytanie" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "Pokaż ocenę" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Pokaż status" @@ -7231,8 +7793,9 @@ msgid "View profile and more" msgstr "Zobacz profil i więcej" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Rozmiar pliku przekracza maksymalny rozmiar: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7253,25 +7816,9 @@ msgstr[3] "" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Aktualizacje statusu od {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Recenzje od {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Cytaty od {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Komentarze od {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo index 43e0165ace..8465776256 100644 Binary files a/locale/pt_BR/LC_MESSAGES/django.mo and b/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/locale/pt_BR/LC_MESSAGES/django.po index 5fb1116421..b3535fd4a6 100644 --- a/locale/pt_BR/LC_MESSAGES/django.po +++ b/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-02 04:10\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt\n" @@ -33,56 +33,55 @@ msgstr "Um mês" msgid "Does Not Expire" msgstr "Não expira" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} usos" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Ilimitado" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Senha incorreta" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "As senhas não correspondem" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Senha incorreta" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 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." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "A data de término da leitura não pode ser antes da data de começo." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "A data de término da leitura não pode estar no futuro." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "A data final da leitura não pode ser no futuro." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Nome de usuário ou senha incorretos" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Um usuário com este nome já existe" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Já existe um usuário com este endereço de e-mail." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Código incorreto" @@ -90,7 +89,7 @@ msgstr "Código incorreto" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este domínio está bloqueado. Entre em contato com a administração se você acha que isso é um engano." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Este link e tipo de arquivo já foram adicionados ao livro. Se não estiverem visíveis, o domínio ainda está em processo de análise." @@ -102,8 +101,8 @@ msgstr "Ordem de inserção" msgid "Book Title" msgstr "Título do livro" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Avaliação" @@ -145,8 +144,8 @@ msgstr "Perigo" msgid "Automatically generated report" msgstr "Relatório gerado automaticamente" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Exclusão de moderador" msgid "Domain block" msgstr "Bloqueio de domínio" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Audiolivro" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "e-book" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Graphic novel" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Capa dura" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Capa mole" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentar" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Resenhar" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Seguir" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s não é um remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s não é um nome de usuário válido" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nome de usuário" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Já existe um usuário com este nome." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Já existe um usuário com este nome." msgid "Public" msgstr "Público" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Público" msgid "Unlisted" msgstr "Não listado" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Não listado" msgid "Followers" msgstr "Seguidores" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Seguidores" msgid "Private" msgstr "Particular" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Ativo" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Completo" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Parado" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Importação interrompida" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Erro ao carregar livro" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Não foi possível encontrar o livro" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" -msgstr "" +msgstr "Falhou" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratuito" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Comprável" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponível para empréstimo" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprovado" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Comentar" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Relatório resolvido" @@ -329,163 +395,199 @@ msgstr "Relatório reaberto" #: bookwyrm/models/report.py:87 msgid "Messaged reporter" -msgstr "" +msgstr "Relatório de mensagens" #: bookwyrm/models/report.py:88 msgid "Messaged reported user" -msgstr "" +msgstr "Mensagem reportada de usuário" #: bookwyrm/models/report.py:89 msgid "Suspended user" -msgstr "" +msgstr "Usuário suspenso" #: bookwyrm/models/report.py:90 msgid "Un-suspended user" -msgstr "" +msgstr "Usuário não suspenso" #: bookwyrm/models/report.py:91 msgid "Changed user permission level" -msgstr "" +msgstr "Nível de permissão de usário mudado" #: bookwyrm/models/report.py:92 msgid "Deleted user account" -msgstr "" +msgstr "Conta de usuário excluída" #: bookwyrm/models/report.py:93 msgid "Blocked domain" -msgstr "" +msgstr "Domínio bloqueado" #: bookwyrm/models/report.py:94 msgid "Approved domain" -msgstr "" +msgstr "Domínio aprovado" #: bookwyrm/models/report.py:95 msgid "Deleted item" +msgstr "Item deletado" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" msgstr "" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Status de %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "Comentário de %(display_name)s em %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "Citação de %(display_name)s em %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "Resenha de %(display_name)s de %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s avaliou %(book_title)s: %(display_rating).1f estrela" +msgstr[1] "%(display_name)s avaliou %(book_title)s: %(display_rating).1f estrelas" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Resenhas" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Comentários" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citações" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Todo o resto" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Linha do tempo" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Página inicial" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Linha do tempo dos livros" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Livros" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (Inglês)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Catalão)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Alemão)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Espanhol)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Basco)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galego)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Coreano)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finlandês)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Francês)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" -msgstr "" +msgstr "Holandês (Alemão)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norueguês)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polonês)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Português do Brasil)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Português Europeu)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Romeno)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" -msgstr "" +msgstr "Українська (Ucraniano)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinês simplificado)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinês tradicional)" #: bookwyrm/templates/403.html:5 msgid "Oh no!" -msgstr "" +msgstr "Ai!" #: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 msgid "Permission Denied" @@ -494,11 +596,11 @@ msgstr "Permissão negada" #: bookwyrm/templates/403.html:11 #, python-format msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." -msgstr "" +msgstr "Você não tem permissão para ver essa página ou executar essa ação. Seu nível de usuário é %(level)s." #: bookwyrm/templates/403.html:15 msgid "If you think you should have access, please speak to your BookWyrm server administrator." -msgstr "" +msgstr "Se você acha que deveria ter acesso, por favor, fale com seu administrador do servidor do seu BookWyrm." #: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 msgid "Not Found" @@ -510,17 +612,15 @@ msgstr "A página que você procura não existe!" #: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 msgid "File too large" -msgstr "" +msgstr "Arquivo muito pesado" #: bookwyrm/templates/413.html:9 msgid "The file you are uploading is too large." -msgstr "" +msgstr "O arquivo que você está upando é muito pesado." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "" +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Você pode tentar usar um arquivo menor, ou perguntar para o administrador do servidor do seu BookWyrm para que aumente a configuração do DATA_UPLOAD_MAX_MEMORY_SIZE" #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -616,7 +716,7 @@ msgid "Statuses posted:" msgstr "Publicações:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versão do software:" @@ -716,8 +816,8 @@ msgstr "Isso dá uma média de %(pages)s páginas por livro." #, python-format msgid "(No page data was available for %(no_page_number)s book)" msgid_plural "(No page data was available for %(no_page_number)s books)" -msgstr[0] "" -msgstr[1] "(Não há página de dados disponível para%(no_page_number)s livros)" +msgstr[0] "Não há página de dados disponível para %(no_page_number)s livro)" +msgstr[1] "(Não há página de dados disponível para %(no_page_number)s livros)" #: bookwyrm/templates/annual_summary/layout.html:150 msgid "Their shortest read this year…" @@ -726,7 +826,7 @@ msgstr "A leitura mais curta do ano…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -806,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipédia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Website" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Ver registro ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Veja no ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Carregar informações" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Ver na OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Ver no Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Ver no LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Ver no Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Livros de %(name)s" @@ -880,8 +984,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separe com vírgulas." @@ -893,50 +997,54 @@ msgstr "Sobre mim:" msgid "Wikipedia link:" msgstr "Link da Wikipédia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Dado da Wiki:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Website:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data de nascimento:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data da morte:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identificadores do/a autor/a" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Chave Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Chave Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Chave Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -944,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -958,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Salvar" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -975,6 +1083,7 @@ msgstr "Salvar" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -992,100 +1101,104 @@ msgstr "Para carregar informações nos conectaremos a %(source_name)sdifferent edition of this book is on your %(shelf_name)s shelf." msgstr "Uma edição diferente deste livro está em sua estante %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Andamento da sua leitura" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Adicionar registro de leitura" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Você ainda não registrou sua leitura." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Suas resenhas" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Seus comentários" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Suas citações" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Assuntos" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1093,18 +1206,18 @@ msgstr "Lugares" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Adicionar à lista" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1120,49 +1233,59 @@ msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:12 #: bookwyrm/templates/book/book_identifiers.html:13 msgid "Copy ISBN" -msgstr "" +msgstr "Copiar ISBN" #: bookwyrm/templates/book/book_identifiers.html:16 msgid "Copied ISBN!" -msgstr "" +msgstr "ISBN copiado!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Adicionar capa" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Enviar capa:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" -msgstr "" +msgstr "Subir capa desde URL:" #: bookwyrm/templates/book/cover_show_modal.html:6 msgid "Book cover preview" @@ -1234,7 +1357,7 @@ msgid "This is a new work" msgstr "É uma nova obra" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1287,125 +1410,129 @@ msgstr "Voltar" msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" -msgstr "" +msgstr "Organizar título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Série:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Número na série:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Assuntos:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Adicionar assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Excluir assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Adicionar outro assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publicação" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editora:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Data da primeira publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data de publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autores/as" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Remover %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Página de autor/a de %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Adicionar autores/as:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Adicionar autor/a" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Fulana" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Adicionar outro/a autor/a" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Capa" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Propriedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detalhes do formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identificadores do livro" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1417,7 +1544,7 @@ msgstr "Edições de %(book_title)s" #: bookwyrm/templates/book/editions/editions.html:8 #, python-format msgid "Editions of %(work_title)s" -msgstr "" +msgstr "Edições de %(work_title)s" #: bookwyrm/templates/book/editions/editions.html:55 msgid "Can't find the edition you're looking for?" @@ -1433,7 +1560,7 @@ msgid "Any" msgstr "Qualquer um" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Idioma:" @@ -1494,12 +1621,15 @@ msgid "Domain" msgstr "Domínio" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1511,8 +1641,8 @@ msgstr "Publicação" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1558,8 +1688,8 @@ msgstr "Saindo da BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Este link te levará a: %(link_url)s.
    Você quer mesmo ir?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continuar" @@ -1615,7 +1745,19 @@ msgstr "Livro não ordenado" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Para carregar informações nos conectaremos a %(source_name)s e buscaremos metadados que ainda não temos sobre este livro. Metadados já existentes não serão substituídos." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Editar resenha" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Editar citação" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Editar comentário" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Editar publicação" @@ -1642,7 +1784,7 @@ msgstr "Código de confirmação:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Enviar" @@ -1724,12 +1866,12 @@ msgstr "Sugerido" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1850,8 +1992,8 @@ msgstr "Olá," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm hospedada em %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm é hospedado em %(site_name)s" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1869,8 +2011,8 @@ msgstr "Inscreva-se" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Saiba mais sobre %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "Saiba mais sobre %(site_name)s." #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2046,19 +2188,19 @@ msgid "Add to your books" msgstr "Adicionar aos seus livros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Quero ler" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Lendo atualmente" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2067,7 +2209,7 @@ msgid "Read" msgstr "Lido" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Finalizar leitura" @@ -2100,7 +2242,7 @@ msgstr "Você pode adicionar livros quando começar a usar o %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Pesquisar" @@ -2318,7 +2460,7 @@ msgstr "Gerente" #: bookwyrm/templates/groups/user_groups.html:35 msgid "No groups found." -msgstr "" +msgstr "Nenhum grupo encontrado." #: bookwyrm/templates/guided_tour/book.html:10 msgid "This is home page of a book. Let's see what you can do while you're here!" @@ -2430,15 +2572,15 @@ msgstr "Escrever uma avaliação" #: bookwyrm/templates/guided_tour/book.html:151 msgid "You can share your thoughts on this book generally with a simple comment" -msgstr "" +msgstr "Você pode compartilhar o que pensa sobre este livro com um simples comentário" #: bookwyrm/templates/guided_tour/book.html:152 msgid "Post a comment" -msgstr "" +msgstr "Postar um comentário" #: bookwyrm/templates/guided_tour/book.html:175 msgid "Just read some perfect prose? Let the world know by sharing a quote!" -msgstr "" +msgstr "Acaba de ler uma prosa perfeita? Espalhe-a pelo mundo através de uma citação!" #: bookwyrm/templates/guided_tour/book.html:176 msgid "Share a quote" @@ -2446,15 +2588,15 @@ msgstr "Compartilhar uma citação" #: bookwyrm/templates/guided_tour/book.html:199 msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" -msgstr "" +msgstr "Se sua resenha ou comentário pode estragar o livro para alguém que ainda não o leu, você pode esconder suas postagem com alerta de spoiler" #: bookwyrm/templates/guided_tour/book.html:200 msgid "Spoiler alerts" -msgstr "" +msgstr "Alerta de spoiler" #: bookwyrm/templates/guided_tour/book.html:224 msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" -msgstr "" +msgstr "Escolha quem pode ver sua postagem aqui. A privacidade de postagem pode ser Pública(Todos podem vê-las), Não listados(todos podem vê-las, mas não aparecem em feeds públicos ou páginas de descobertas, Seguidores(Apenas seus seguidores podem ver) ou Privado(apenas você pode vê-las)" #: bookwyrm/templates/guided_tour/book.html:225 #: bookwyrm/templates/snippets/privacy_select.html:6 @@ -2464,15 +2606,15 @@ msgstr "Privacidade da publicação" #: bookwyrm/templates/guided_tour/book.html:248 msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." -msgstr "" +msgstr "Alguns livros podem ser baixados gratuitamente de fontes externas. Elas aparecerão aqui." #: bookwyrm/templates/guided_tour/book.html:249 msgid "Download links" -msgstr "" +msgstr "Link para baixar" #: bookwyrm/templates/guided_tour/book.html:273 msgid "Continue the tour by selecting Your books from the drop down menu." -msgstr "" +msgstr "Continue o passeio selecionando Seus livros no menu suspenso." #: bookwyrm/templates/guided_tour/book.html:296 #: bookwyrm/templates/guided_tour/home.html:50 @@ -2482,51 +2624,51 @@ msgstr "" #: bookwyrm/templates/guided_tour/user_groups.html:116 #: bookwyrm/templates/guided_tour/user_profile.html:141 msgid "Ok" -msgstr "" +msgstr "Correto" #: bookwyrm/templates/guided_tour/group.html:10 msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." -msgstr "" +msgstr "Benvindo à página do seu grupo! Aqui é onde você pode adicionar e remover usuários, criar uma lista de usuários curadores e editar os detalhes do grupo." #: bookwyrm/templates/guided_tour/group.html:11 msgid "Your group" -msgstr "" +msgstr "Seu grupo." #: bookwyrm/templates/guided_tour/group.html:31 msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." -msgstr "" +msgstr "Use esta caixa de busca para encontrar usuários que possam entrar no seu grupo. Atualmente os usuários devem ser membros da mesma instância de BookWyrm e serem convidados pelo proprietário do grupo." #: bookwyrm/templates/guided_tour/group.html:32 msgid "Find users" -msgstr "" +msgstr "Encontre usuários" #: bookwyrm/templates/guided_tour/group.html:54 msgid "Your group members will appear here. The group owner is marked with a star symbol." -msgstr "" +msgstr "Os membros do seu grupo aparecerão aqui. O proprietário do grupo é marcado com um símbolo de estrela." #: bookwyrm/templates/guided_tour/group.html:55 msgid "Group members" -msgstr "" +msgstr "Membros do grupo" #: bookwyrm/templates/guided_tour/group.html:77 msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." -msgstr "" +msgstr "Além de criar listas a partir da página de Listas, você pode criar uma lista de grupos aqui na página inicial do grupo. Qualquer membro do grupo pode criar uma lista selecionada por membros do grupo." #: bookwyrm/templates/guided_tour/group.html:78 msgid "Group lists" -msgstr "" +msgstr "Lista de grupos" #: bookwyrm/templates/guided_tour/group.html:100 msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" -msgstr "" +msgstr "Parabéns! Você finalizou o passeio! Agora você conhece o básico, mas há um monte de coisas para explorar por você mesmo ainda. Leia muito!" #: bookwyrm/templates/guided_tour/group.html:115 msgid "End tour" -msgstr "" +msgstr "Fim do passeio" #: bookwyrm/templates/guided_tour/home.html:16 msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" -msgstr "" +msgstr "Aconchegue-se em BookWyrm!

    Gostaria de fazer um passeio guiado para ajudar a começar?" #: bookwyrm/templates/guided_tour/home.html:17 #: bookwyrm/templates/guided_tour/home.html:39 @@ -2541,7 +2683,7 @@ msgstr "Não, obrigado" #: bookwyrm/templates/guided_tour/home.html:33 msgid "Yes please!" -msgstr "" +msgstr "Adoraria!" #: bookwyrm/templates/guided_tour/home.html:38 msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" @@ -2549,11 +2691,11 @@ msgstr "Se você mudar de ideia, basta clicar no link Visita Guiada para iniciar #: bookwyrm/templates/guided_tour/home.html:62 msgid "Search for books, users, or lists using this search box." -msgstr "" +msgstr "Busque livros, usuários ou listas usando essa caixa de busca." #: bookwyrm/templates/guided_tour/home.html:63 msgid "Search box" -msgstr "" +msgstr "Caixa de busca" #: bookwyrm/templates/guided_tour/home.html:79 msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" @@ -2565,7 +2707,7 @@ msgstr "Leitor de código de barras" #: bookwyrm/templates/guided_tour/home.html:102 msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" -msgstr "" +msgstr "Use os links de Listas, Descobertas e Seus livros para encontrar sugestões de leituras e os últimos acontecimentos no seu servidor, ou para ver seu catálogo de livros!" #: bookwyrm/templates/guided_tour/home.html:103 msgid "Navigation Bar" @@ -2573,19 +2715,19 @@ msgstr "Barra de navegação" #: bookwyrm/templates/guided_tour/home.html:126 msgid "Books on your reading status shelves will be shown here." -msgstr "" +msgstr "Livros nas suas prateleiras de leitura serão mostrados aqui." #: bookwyrm/templates/guided_tour/home.html:151 msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." -msgstr "" +msgstr "Autalizações das pessoas que você segue aparecerão na sua linha temporal de Início.

    As abas de Livros mostram a atividade de alguém, relacionados com seus livros." #: bookwyrm/templates/guided_tour/home.html:152 msgid "Timelines" -msgstr "" +msgstr "Linha temporal" #: bookwyrm/templates/guided_tour/home.html:176 msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" -msgstr "" +msgstr "O campainha se iluminará quando você tiver uma nova notificação. Quando isso acontecer, clique nela para descobrir o que aconteceu de forma tão misteriosa!" #: bookwyrm/templates/guided_tour/home.html:177 #: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 @@ -2597,11 +2739,11 @@ msgstr "Notificações" #: bookwyrm/templates/guided_tour/home.html:200 msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." -msgstr "" +msgstr "Seu perfil, diretório de usuário, diretório de mensagens e configurações podem ser acessados clicando no seu nome no menu aqui." #: bookwyrm/templates/guided_tour/home.html:200 msgid "Try selecting Profile from the drop down menu to continue the tour." -msgstr "" +msgstr "Tente selecionar Perfil no menu suspenso para continuar o passeio." #: bookwyrm/templates/guided_tour/home.html:201 msgid "Profile and settings menu" @@ -2613,7 +2755,7 @@ msgstr "Esta é a página de listas onde você pode descobrir listas de livros c #: bookwyrm/templates/guided_tour/lists.html:13 msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." -msgstr "" +msgstr "As prateleiras são para organizar livros para si mesmo, enquanto as Listas geralmente são para compartilhar com os outros." #: bookwyrm/templates/guided_tour/lists.html:34 msgid "Let's see how to create a new list." @@ -2621,7 +2763,7 @@ msgstr "Vamos ver como criar uma nova lista." #: bookwyrm/templates/guided_tour/lists.html:34 msgid "Click the Create List button, then Next to continue the tour" -msgstr "" +msgstr "Clique no botão Criar Lista, depois em Próximo para continuar o passeio. " #: bookwyrm/templates/guided_tour/lists.html:35 #: bookwyrm/templates/guided_tour/lists.html:59 @@ -2630,35 +2772,35 @@ msgstr "Criando uma nova lista" #: bookwyrm/templates/guided_tour/lists.html:58 msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." -msgstr "" +msgstr "Você deve dar a sua lista um nome e opcionalmente pode dar-lhe uma descrição para ajudar as outras pessoas entenderem sobre o que é sua lista." #: bookwyrm/templates/guided_tour/lists.html:81 msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." -msgstr "" +msgstr "Escolha quem pode ver sua lista aqui. Listas de privacidades funcionam como nós vimos quando postamos resenhas de livros. Isso é um padrão comum em todo Bookwyrm" #: bookwyrm/templates/guided_tour/lists.html:82 msgid "List privacy" -msgstr "" +msgstr "Lista de privacidade" #: bookwyrm/templates/guided_tour/lists.html:105 msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." -msgstr "" +msgstr "Você também pode decidir como sua lista é organizada - somente por você, por alguém ou por um grupo." #: bookwyrm/templates/guided_tour/lists.html:106 msgid "List curation" -msgstr "" +msgstr "Organização de lista" #: bookwyrm/templates/guided_tour/lists.html:128 msgid "Next in our tour we will explore Groups!" -msgstr "" +msgstr "Em seguida vamos explorar os Grupos no nosso passeio!" #: bookwyrm/templates/guided_tour/lists.html:129 msgid "Next: Groups" -msgstr "" +msgstr "Próximo: Grupos" #: bookwyrm/templates/guided_tour/lists.html:143 msgid "Take me there" -msgstr "" +msgstr "Vamos pra lá!" #: bookwyrm/templates/guided_tour/search.html:16 msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." @@ -2667,7 +2809,7 @@ msgstr "" #: bookwyrm/templates/guided_tour/search.html:17 #: bookwyrm/templates/guided_tour/search.html:44 msgid "Searching" -msgstr "" +msgstr "Procurando" #: bookwyrm/templates/guided_tour/search.html:43 msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." @@ -2675,27 +2817,27 @@ msgstr "" #: bookwyrm/templates/guided_tour/search.html:71 msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." -msgstr "" +msgstr "Se o livro que você está procurando não estiver listado, tente carregar mais registros de outras fontes, como Open Library ou Inventaire." #: bookwyrm/templates/guided_tour/search.html:72 msgid "Load more records" -msgstr "" +msgstr "Carregar mais registros" #: bookwyrm/templates/guided_tour/search.html:98 msgid "If your book is not in the results, try adjusting your search terms." -msgstr "" +msgstr "Se seu livro não estiver nos resultados, tente ajustar os termos de pesquisa." #: bookwyrm/templates/guided_tour/search.html:99 msgid "Search again" -msgstr "" +msgstr "Pesquisar novamente" #: bookwyrm/templates/guided_tour/search.html:121 msgid "If you still can't find your book, you can add a record manually." -msgstr "" +msgstr "Caso você ainda não conseguir encontrar o seu livro, você pode adicionar um registro manualmente." #: bookwyrm/templates/guided_tour/search.html:122 msgid "Add a record manually" -msgstr "" +msgstr "Adicionar um registro manualmente" #: bookwyrm/templates/guided_tour/search.html:147 msgid "Import, manually add, or view an existing book to continue the tour." @@ -2716,7 +2858,7 @@ msgstr "Seus livros" #: bookwyrm/templates/guided_tour/user_books.html:31 msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." -msgstr "" +msgstr "Para Ler, Lendo Atualmente, Lido, e Leitura Interrompida são estantes-padrão. Quando você muda o status de leitura de um livro, ele automaticamente é movido para a estante correspondente. Cada livro só pode estar em uma estante-padrão." #: bookwyrm/templates/guided_tour/user_books.html:32 msgid "Reading status shelves" @@ -2736,33 +2878,34 @@ msgstr "" #: bookwyrm/templates/guided_tour/user_books.html:79 msgid "Import from another service" -msgstr "" +msgstr "Importar de outro serviço" #: bookwyrm/templates/guided_tour/user_books.html:101 msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" -msgstr "" +msgstr "Agora que nós já exploramos as prateleiras de livros, vamos dar uma olhadinha em um conceito relacionado: a lista de livros!" #: bookwyrm/templates/guided_tour/user_books.html:101 msgid "Click on the Lists link here to continue the tour." -msgstr "" +msgstr "Clique aqui no link de Listas para continuar o passeio." #: bookwyrm/templates/guided_tour/user_groups.html:10 msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." -msgstr "" +msgstr "Você criar ou unir-se a um grupo com outros usuários. Os Grupos podem compartilhar listas de livros organizados por grupo e no futuro poderão fazer outras coisas." #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupos" #: bookwyrm/templates/guided_tour/user_groups.html:31 msgid "Let's create a new group!" -msgstr "" +msgstr "Vamos criar um grupo novo!" #: bookwyrm/templates/guided_tour/user_groups.html:31 msgid "Click the Create group button, then Next to continue the tour" -msgstr "" +msgstr "Clique no botão de Criar grupo, depois em Próximo para continuar o passeio" #: bookwyrm/templates/guided_tour/user_groups.html:55 msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" @@ -2866,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "" @@ -2881,84 +3026,96 @@ msgstr "Fonte dos dados:" #: bookwyrm/templates/import/import.html:58 msgid "Goodreads (CSV)" -msgstr "" +msgstr "Goodreads (CSV)" #: bookwyrm/templates/import/import.html:61 msgid "Storygraph (CSV)" -msgstr "" +msgstr "Storygraph (CSV)" #: bookwyrm/templates/import/import.html:64 msgid "LibraryThing (TSV)" -msgstr "" +msgstr "LibraryThing (TSV)" #: bookwyrm/templates/import/import.html:67 msgid "OpenLibrary (CSV)" -msgstr "" +msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 -msgid "Calibre (CSV)" +msgid "OpenReads (CSV)" msgstr "" +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "Calibre (CSV)" + #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "" -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Arquivo de dados:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Incluir resenhas" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Configurações de privacidade para resenhas importadas:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importar" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "" -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "" -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importações recentes" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Nenhuma importação recente" @@ -2982,20 +3139,24 @@ msgid "Imports" msgstr "Importações" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importação iniciada:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Em curso" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Atualizar" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "" @@ -3012,6 +3173,7 @@ msgid "Review items" msgstr "Revisar itens" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3019,6 +3181,7 @@ msgstr[0] "Falha ao importar %(display_counter)s item." msgstr[1] "Falha ao importar %(display_counter)s itens." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Ver e solucionar importações fracassadas" @@ -3027,12 +3190,14 @@ msgid "Row" msgstr "Linha" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Título" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3041,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Chave Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor/a" @@ -3050,13 +3215,9 @@ msgstr "Autor/a" msgid "Shelf" msgstr "Estante" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Resenhar" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Livro" @@ -3074,6 +3235,8 @@ msgid "View imported review" msgstr "Visualizar resenha importada" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importado" @@ -3109,114 +3272,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Perfil do usuário" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3240,15 +3408,18 @@ msgid "Reject" msgstr "Rejeitar" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Itens cuja importação falhou" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Solução de problemas" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Tentar uma importação novamente pode corrigir itens faltantes como:" @@ -3257,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "O livro foi adicionado à sua instância desde esta importação" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Um erro temporário ou timeout fez com que a fonte de dados externa ficasse inacessível." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "Desde a importação a BookWyrm foi atualizada com uma correção de bugs" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Fale com a administração ou crie um problema se você perceber itens com erros inesperados." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Total" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Publicações" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Criar conta" @@ -3322,7 +3568,7 @@ msgid "Login" msgstr "Entrar" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Entrar" @@ -3338,22 +3584,22 @@ msgstr "Endereço de e-mail confirmado com sucesso." msgid "Username:" msgstr "Usuário:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Senha:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Esqueceu sua senha?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Mais sobre este site" @@ -3381,7 +3627,7 @@ msgstr "Redefinir senha" msgid "Reactivate Account" msgstr "" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "" @@ -3391,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "Busca %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Pesquisar livro, usuário ou lista" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3605,6 +3851,8 @@ msgid "List position" msgstr "Posição na lista" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Definir" @@ -3767,62 +4015,62 @@ msgstr "" #: bookwyrm/templates/notifications/items/boost.html:44 #, python-format msgid "%(related_user)s boosted your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s impulsou seu comentário em %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:50 #, python-format msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s e %(second_user)s impulsou seu comentário em %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:59 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" -msgstr "" +msgstr "%(related_user)s e %(other_user_display_count)s outros impulsaram seu comentário em %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:67 #, python-format msgid "%(related_user)s boosted your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s impulsou sua citação de %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:73 #, python-format msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s e %(second_user)s impulsou sua citação de %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:82 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" -msgstr "" +msgstr "%(related_user)s e %(other_user_display_count)s outros impulsaram sua citação de %(book_title)s" #: bookwyrm/templates/notifications/items/boost.html:90 #, python-format msgid "%(related_user)s boosted your status" -msgstr "" +msgstr "%(related_user)s impulsou seu status" #: bookwyrm/templates/notifications/items/boost.html:96 #, python-format msgid "%(related_user)s and %(second_user)s boosted your status" -msgstr "" +msgstr "%(related_user)s e %(second_user)s impulsou seu status" #: bookwyrm/templates/notifications/items/boost.html:105 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" -msgstr "" +msgstr "%(related_user)s e %(other_user_display_count)s outros impulsaram seu status" #: bookwyrm/templates/notifications/items/fav.html:21 #, python-format msgid "%(related_user)s liked your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s gostou da sua resenha de %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:27 #, python-format msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s e %(second_user)s gostou da sua resenha de %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:36 #, python-format msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" -msgstr "" +msgstr "%(related_user)s e %(other_user_display_count)s outros gostaram da sua resenha de %(book_title)s" #: bookwyrm/templates/notifications/items/fav.html:44 #, python-format @@ -3929,7 +4177,7 @@ msgstr "" #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "" msgstr[1] "" @@ -4100,21 +4348,21 @@ msgstr "Você já está seguindo %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Você já pediu para seguir %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Siga %(username)s no fediverso" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Siga %(username)s de outra conta no fediverso, como BookWyrm, Mastodon ou Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Seu nome de usuário:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Seguir!" @@ -4155,80 +4403,12 @@ msgstr "Vamos entrar primeiro..." msgid "Follow %(username)s" msgstr "Seguir %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Agora você está seguindo %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "" - #: bookwyrm/templates/preferences/alias_user.html:4 #: bookwyrm/templates/preferences/move_user.html:4 #: bookwyrm/templates/preferences/move_user.html:7 @@ -4328,6 +4508,12 @@ msgstr "Excluir conta permanentemente" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "A exclusão de sua conta não poderá ser desfeita. O nome de usuário não estará disponível para cadastro no futuro." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "" @@ -4357,12 +4543,12 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Exibir" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacidade" @@ -4371,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Mostrar sugestão de meta de leitura na linha do tempo" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Mostrar sugestões de usuários" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Mostrar conta nas sugestões de usuários" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Sua conta aparecerá no diretório e poderá ser recomendada para outros usuários da BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Fuso horário preferido: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Aprovar seguidores manualmente" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Esconder quem sigo e seguidores no perfil" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Privacidade padrão das publicações:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4477,6 +4727,10 @@ msgstr "" msgid "Account" msgstr "Conta" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4512,6 +4766,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4557,6 +4929,7 @@ msgstr "Começou a ler" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Andamento" @@ -4687,8 +5060,8 @@ msgstr "Termo de pesquisa" msgid "Search type" msgstr "Tipo de pesquisa" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4698,12 +5071,12 @@ msgstr "Tipo de pesquisa" msgid "Users" msgstr "Usuários" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Nenhum resultado encontrado para \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4725,7 +5098,7 @@ msgstr "Editar" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Avisos" @@ -4743,13 +5116,13 @@ msgstr "Falso" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data de início:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data final:" @@ -4818,7 +5191,6 @@ msgstr "Cor:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Regras de moderação automática" @@ -4831,35 +5203,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Usuários ou publicações já denunciados (independente de terem ou não sido solucionados) não serão sinalizados." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Agendamento:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Última execução:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Número total de execuções:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Habilitado:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Excluir agendamento" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Executar agora" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "A data da última execução não será atualizada" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Agendar verificação" @@ -4904,6 +5284,7 @@ msgstr "Excluir regra" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "" @@ -4932,6 +5313,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -4975,8 +5357,9 @@ msgid "Active Tasks" msgstr "" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "" @@ -4989,6 +5372,8 @@ msgid "Run time" msgstr "" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "" @@ -5021,6 +5406,66 @@ msgstr "" msgid "Errors" msgstr "" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Motivo de desativação:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Instâncias federadas" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5028,7 +5473,7 @@ msgid "Dashboard" msgstr "Painel" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Total de usuários" @@ -5037,40 +5482,36 @@ msgstr "Total de usuários" msgid "Active this month" msgstr "Ativo neste mês" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Publicações" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Obras" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Atividade da instância" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervalo:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dias" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Semanas" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Novos usuários" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Publicações" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Obras criadas" @@ -5082,9 +5523,13 @@ msgstr "Cadastros" msgid "Statuses posted" msgstr "Publicações feitas" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5166,7 +5611,7 @@ msgstr "Nenhum domínio de e-mail bloqueado" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "" @@ -5179,7 +5624,7 @@ msgid "Successfully sent test email." msgstr "" #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Remetente dos emails:" @@ -5227,15 +5672,6 @@ msgstr "" msgid "Add instance" msgstr "Adicionar instância" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Instâncias federadas" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5311,12 +5747,6 @@ msgstr "Notas" msgid "No notes" msgstr "Sem notas" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Todos os usuários desta instância serão desativados." @@ -5369,6 +5799,49 @@ msgstr "Software" msgid "No instances found" msgstr "Nenhuma instância encontrada" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5415,7 +5888,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "" #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "" @@ -5435,62 +5908,81 @@ msgstr "" msgid "Set limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5654,6 +6146,10 @@ msgstr "Moderação" msgid "Reports" msgstr "Denúncias" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5664,22 +6160,26 @@ msgstr "Domínios de links" msgid "System" msgstr "" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Configurações da instância" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Configurações do site" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5687,7 +6187,7 @@ msgstr "Configurações do site" msgid "Registration" msgstr "Cadastro" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5893,6 +6393,61 @@ msgstr "Solucionada" msgid "No reports found." msgstr "Nenhuma denúncia encontrada." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6138,10 +6693,6 @@ msgstr "Seguidores manualmente aprovados:" msgid "Discoverable:" msgstr "Publicamente visível:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Motivo de desativação:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detalhes da instância" @@ -6235,8 +6786,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Seu domínio parece estar mal configurado. Ele não deve incluir protocolo nem barras." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Você está rodando a BookWyrm em produção sem https. USE_HTTPS deve ser habilitado em produção." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6246,39 +6797,39 @@ msgstr "Configurações" msgid "Instance domain:" msgstr "Domínio da instância:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocolo:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Usar S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Idioma padrão da interface:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Ativar imagens na pré-visualização:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Ativar miniaturas de imagens:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Tudo está correto?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Esta é sua última chance de configurar seu domínio e protocolo." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Você pode mudar as configurações da instância no arquivo .env em seu servidor." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Ver instruções da instalação" @@ -6295,7 +6846,7 @@ msgid "Need help?" msgstr "Precisa de ajuda?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Criar estante" @@ -6303,59 +6854,72 @@ msgstr "Criar estante" msgid "Edit Shelf" msgstr "Editar estante" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Todos os livros" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importar livros" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s livro" msgstr[1] "%(formatted_count)s livros" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(mostrando %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Editar estante" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Excluir estante" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Adicionado" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Iniciado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Terminado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Esta estante está vazia." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Convidar" @@ -6457,10 +7021,6 @@ msgstr "Alerta de spoiler!" msgid "Comment:" msgstr "Comentário:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Publicar" @@ -6486,7 +7046,7 @@ msgstr "Na página:" msgid "At percent:" msgstr "Na porcentagem:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "" @@ -6531,10 +7091,6 @@ msgstr "Aplicar filtros" msgid "Follow @%(username)s" msgstr "Seguir @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Seguir" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Cancelar solicitação para seguir" @@ -6567,7 +7123,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "" #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Sem avaliação" @@ -6579,7 +7135,7 @@ msgstr[0] "%(half_rating)s estrela" msgstr[1] "%(half_rating)s estrelas" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6729,7 +7285,7 @@ msgstr "" #: bookwyrm/templates/snippets/shelf_selector.html:53 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 msgid "Stopped reading" -msgstr "" +msgstr "Leitura interrompida" #: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 #, python-format @@ -6808,6 +7364,10 @@ msgstr "" msgid "Finish reading" msgstr "Terminar de ler" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Mostrar publicação" @@ -6908,12 +7468,12 @@ msgstr "resenhou %(book)s" #: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 #, python-format msgid "stopped reading %(book)s by %(author_name)s" -msgstr "" +msgstr "parou de ler %(book)s por %(author_name)s" #: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 #, python-format msgid "stopped reading %(book)s" -msgstr "" +msgstr "parou de ler %(book)s" #: bookwyrm/templates/snippets/status/headers/to_read.html:10 #, python-format @@ -7163,8 +7723,9 @@ msgid "View profile and more" msgstr "Ver perfil e mais" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Arquivo excede o tamanho máximo: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7183,24 +7744,8 @@ msgstr[1] "" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Novas publicações de {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" msgstr "" #: bookwyrm/views/updates.py:45 diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo index d44898ecd9..40968c01c0 100644 Binary files a/locale/pt_PT/LC_MESSAGES/django.mo and b/locale/pt_PT/LC_MESSAGES/django.mo differ diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po index 52cc6f7706..2b530055fa 100644 --- a/locale/pt_PT/LC_MESSAGES/django.po +++ b/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-02 04:10\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese\n" "Language: pt\n" @@ -33,56 +33,55 @@ msgstr "Um Mês" msgid "Does Not Expire" msgstr "Não Expira" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} utilizações" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Ilimitado" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Palavra-passe incorreta" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Palavras-passe não coincidem" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Palavra-passe Incorreta" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "A data final de leitura não pode ser anterior à data de início." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "A data de paragem de leitura não pode ser anterior à data de início." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Data de paragem de leitura não pode ser no futuro." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Data de fim de leitura não pode ser no futuro." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Nome de utilizador ou palavra-passe incorretos" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Já existe um utilizador com este nome" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Já existe um utilizador com este E-Mail." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Código Incorreto" @@ -90,7 +89,7 @@ msgstr "Código Incorreto" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este domínio está bloqueado. Por favor, entre em contacto com o administrador caso aches que isto é um erro." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Este link com o tipo de arquivo já foi adicionado a este livro. Se não estiver visível, o domínio ainda está pendente." @@ -102,8 +101,8 @@ msgstr "Ordem da Lista" msgid "Book Title" msgstr "Título do livro" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Classificação" @@ -145,8 +144,8 @@ msgstr "Perigo" msgid "Automatically generated report" msgstr "Relatório gerado automaticamente" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Exclusão do moderador" msgid "Domain block" msgstr "Bloqueio de domínio" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Livro-áudio" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "eBook" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Novela gráfica" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Capa dura" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Capa mole" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "%(value)s não parece ser um ISBN" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s Não tem a verificação do ISBN correta%(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentar" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Critica" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citação" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Seguir" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "não autorizado" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "relação_inválida" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s não é um remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s não é um nome de utilizador válido" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nome de utilizador" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Um utilizador com o mesmo nome de utilizador já existe." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Um utilizador com o mesmo nome de utilizador já existe." msgid "Public" msgstr "Público" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Público" msgid "Unlisted" msgstr "Não listado" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Não listado" msgid "Followers" msgstr "Seguidores" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,73 +326,72 @@ msgstr "Seguidores" msgid "Private" msgstr "Privado" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Ativo" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Concluído" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Parado" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "A importação parou" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Erro ao carregar o livro" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Não foi possível encontrar um resultado para o livro pedido" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" -msgstr "" +msgstr "Falhou" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Grátis" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Comprável" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponível para empréstimo" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprovado" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Comentar" - #: bookwyrm/models/report.py:85 msgid "Resolved report" -msgstr "" +msgstr "Relatório resolvido" #: bookwyrm/models/report.py:86 msgid "Re-opened report" -msgstr "" +msgstr "Relatório reaberto" #: bookwyrm/models/report.py:87 msgid "Messaged reporter" @@ -337,11 +403,11 @@ msgstr "" #: bookwyrm/models/report.py:89 msgid "Suspended user" -msgstr "" +msgstr "Utilizador suspenso" #: bookwyrm/models/report.py:90 msgid "Un-suspended user" -msgstr "" +msgstr "Removia a suspensão do utilizador" #: bookwyrm/models/report.py:91 msgid "Changed user permission level" @@ -349,143 +415,179 @@ msgstr "" #: bookwyrm/models/report.py:92 msgid "Deleted user account" -msgstr "" +msgstr "Conta de utilizador removida" #: bookwyrm/models/report.py:93 msgid "Blocked domain" -msgstr "" +msgstr "Domínio bloqueado" #: bookwyrm/models/report.py:94 msgid "Approved domain" -msgstr "" +msgstr "Domínio aprovado" #: bookwyrm/models/report.py:95 msgid "Deleted item" +msgstr "“Item” removido" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s comentou em %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" msgstr "" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Criticas" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Comentários" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citações" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Tudo o resto" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Cronograma Inicial" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Início" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Cronograma de Livros" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Livros" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "Inglês" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (catalão)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Alemão)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Espanhol)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Basco)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Galician)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (finlandês)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Francês)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (lituano)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" -msgstr "" +msgstr "Holanda (Holanda)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Norueguês)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Polaco)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Português brasileiro)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português (Português Europeu)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Romeno)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (sueco)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" -msgstr "" +msgstr "Українська (ucraniano)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinês simplificado)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinês tradicional)" #: bookwyrm/templates/403.html:5 msgid "Oh no!" -msgstr "" +msgstr "Oh não!" #: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 msgid "Permission Denied" @@ -494,7 +596,7 @@ msgstr "Permissão negada" #: bookwyrm/templates/403.html:11 #, python-format msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." -msgstr "" +msgstr "Não tem permissão para visualizar esta página ou executar esta ação. O seu nível de permissão é %(level)s." #: bookwyrm/templates/403.html:15 msgid "If you think you should have access, please speak to your BookWyrm server administrator." @@ -514,12 +616,10 @@ msgstr "" #: bookwyrm/templates/413.html:9 msgid "The file you are uploading is too large." -msgstr "" +msgstr "O arquivo enviado é muito grande." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." msgstr "" #: bookwyrm/templates/500.html:4 @@ -616,7 +716,7 @@ msgid "Statuses posted:" msgstr "Estados publicados:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versão do software:" @@ -726,7 +826,7 @@ msgstr "A sua menor leitura este ano…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -806,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipédia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Ver no Wikidata" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Página Web" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Ver registro do ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Ver no ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Carregar dados" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Ver na OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Ver no Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Ver na LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Ver na Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Livros por %(name)s" @@ -880,8 +984,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separe vários valores com vírgulas." @@ -893,50 +997,54 @@ msgstr "Biografia:" msgid "Wikipedia link:" msgstr "Link da Wikipédia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Página Web:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data de nascimento:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data de morte:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identificadores de autor(a)" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Chave da Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID do Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Chave do Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Chave do Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -944,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -958,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Salvar" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -975,6 +1083,7 @@ msgstr "Salvar" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -992,100 +1101,104 @@ msgstr "Carregar os dados irá conectar a %(source_name)s e ver #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Confirmar" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Não foi possível conectar à fonte remota." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Editar Livro" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Clica para adicionar capa" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Não foi possível carregar a capa" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Clica para ampliar" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s crítica)" msgstr[1] "(%(review_count)s criticas)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Adicionar uma descrição" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrição:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s edição" msgstr[1] "%(count)s edições" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Tu arquivaste esta edição em:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Uma edição diferente deste livro está na tua prateleira %(shelf_name)s." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "A tua atividade de leitura" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Adicionar datas de leitura" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Não tem nenhuma atividade de leitura para este livro." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "As tuas criticas" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Os teus comentários" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "As tuas citações" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Temas/Áreas" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1093,18 +1206,18 @@ msgstr "Lugares" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Adicionar à lista" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1127,40 +1240,50 @@ msgid "Copied ISBN!" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audível ASEM:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Adicionar uma capa" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Carregar uma capa:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "" @@ -1234,7 +1357,7 @@ msgid "This is a new work" msgstr "Este é um novo trabalho" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1287,125 +1410,129 @@ msgstr "Voltar" msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Séries:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Número da série:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Assuntos:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Adicionar um assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Remover o assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Adicionar outro assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publicação" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editora:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Primeira data de publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data de publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autor(es/as)" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Remover %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Página de autor do %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Adicionar Autor(es/as):" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Adicionar Autor(a)" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Joana Sem-nome" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Adicionar outro autor(a)" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Capa" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Propriedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detalhes do formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Identificadores de Livros" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "ID da Openlibrary:" @@ -1433,7 +1560,7 @@ msgid "Any" msgstr "Qualquer" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Idioma:" @@ -1494,12 +1621,15 @@ msgid "Domain" msgstr "Domínio" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1511,8 +1641,8 @@ msgstr "Estado" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1558,8 +1688,8 @@ msgstr "A sair do BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Este link está a levar-te para: %(link_url)s.
    É para onde queres ir?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Prosseguir" @@ -1615,7 +1745,19 @@ msgstr "Livro não organizado" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Carregar os dados irá conectar a %(source_name)s e verificar se há metadados sobre este autor que não estão aqui presentes. Os metadados existentes não serão substituídos." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Editar citação" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Editar comentário" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Editar estado" @@ -1642,7 +1784,7 @@ msgstr "Código de confirmação:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Submeter" @@ -1724,12 +1866,12 @@ msgstr "Sugerido" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1850,8 +1992,8 @@ msgstr "Olá," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm hospedado no %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1869,8 +2011,8 @@ msgstr "Junta-te Agora" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Saiba mais sobre %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2046,19 +2188,19 @@ msgid "Add to your books" msgstr "Adicionar aos teus livros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Para Ler" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Leituras atuais" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2067,7 +2209,7 @@ msgid "Read" msgstr "Lido" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Leitura Parada" @@ -2100,7 +2242,7 @@ msgstr "Podes adicionar livros quando começas a usar %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Procurar" @@ -2318,7 +2460,7 @@ msgstr "Gestor" #: bookwyrm/templates/groups/user_groups.html:35 msgid "No groups found." -msgstr "" +msgstr "Nenhum grupo encontrado." #: bookwyrm/templates/guided_tour/book.html:10 msgid "This is home page of a book. Let's see what you can do while you're here!" @@ -2752,6 +2894,7 @@ msgstr "Podes criar ou entrar num grupo com outros utilizadores. Grupos podem pa #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupos" @@ -2847,7 +2990,7 @@ msgstr "Ainda não há atividades para esta hashtag!" #: bookwyrm/templates/import/import.html:6 #: bookwyrm/templates/preferences/layout.html:43 msgid "Import Book List" -msgstr "" +msgstr "Importar Lista de Livros" #: bookwyrm/templates/import/import.html:12 msgid "Not a valid CSV file" @@ -2866,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "Em média, as importações recentes levaram %(hours)s horas." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "Em média, as importações recentes levaram %(minutes)s minutos." @@ -2896,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Podes fazer download dos teus dados do Goodreads na Importar/Exportar página da tua conta do Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Ficheiro de dados:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Incluir criticas" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Configuração de privacidade para criticas importadas:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "Configuração de privacidade para revisões e prateleiras importadas:" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importar" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Atingiste o teu limite de importações." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "As importações estão temporariamente desativadas; obrigado pela tua paciência." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importações recentes" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Data de criação" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Última Atualização" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Items" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Nenhuma importação recente" @@ -2982,20 +3139,24 @@ msgid "Imports" msgstr "Importações" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importação iniciada:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Em progresso" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Atualizar" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Parar importação" @@ -3012,6 +3173,7 @@ msgid "Review items" msgstr "Rever objeto" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3019,6 +3181,7 @@ msgstr[0] "%(display_counter)s objeto não foi importado com sucesso." msgstr[1] "%(display_counter)s objetos não foram importados com sucesso." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Ver e resolver problemas com objetos falhados" @@ -3027,12 +3190,14 @@ msgid "Row" msgstr "Linha" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Título" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3041,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Id da Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor(a)" @@ -3050,13 +3215,9 @@ msgstr "Autor(a)" msgid "Shelf" msgstr "Estante" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Critica" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Livro" @@ -3074,6 +3235,8 @@ msgid "View imported review" msgstr "Ver critica importada" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importada" @@ -3109,114 +3272,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Perfil de utilizador" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" -msgstr "" +msgstr "Prateleiras" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" -msgstr "" +msgstr "Listas de livros" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3240,15 +3408,18 @@ msgid "Reject" msgstr "Rejeitar" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Itens falhados" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Resolução de Problemas" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Tentando novamente uma importação que consiga reparar os objetos em falta em casos tais como:" @@ -3257,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "O livro foi adicionado ao domínio desde esta importação" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Um erro transitório ou tempo limite causou a indisponibilidade da fonte de dados externa." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "O BookWyrm foi atualizado desde esta importação com uma correção de erros" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Entra em contato com o administrador do domínio ou abre um problema se estiveres a ver objetos com falha inesperada." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Importação de utilizadores" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Total" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Estados" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "A sua conta não foi definida como uma alcunha da conta de utilizador" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Relacionamento" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Motivo" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Criar uma conta" @@ -3322,7 +3568,7 @@ msgid "Login" msgstr "Login" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Iniciar sessão" @@ -3338,22 +3584,22 @@ msgstr "Sucesso! O teu E-Mail está confirmado." msgid "Username:" msgstr "Nome de utilizador:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Palavra-passe:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Esqueces-te a tua palavra-passe?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Mais sobre este site" @@ -3381,7 +3627,7 @@ msgstr "Redefinir palavra-passe" msgid "Reactivate Account" msgstr "Reativar Conta" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Reativar conta" @@ -3391,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s pesquisa" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Procurar por um livro, utilizador, ou lista" +msgid "Search for a book, author, user, or list" +msgstr "Procurar por um livro, autor, utilizador, ou lista" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3408,7 +3654,7 @@ msgstr "palavra-passe" #: bookwyrm/templates/layout.html:136 msgid "Show/Hide password" -msgstr "" +msgstr "Mostrar/Ocultar palavra-passe" #: bookwyrm/templates/layout.html:150 msgid "Join" @@ -3605,6 +3851,8 @@ msgid "List position" msgstr "Posição da lista" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Definir" @@ -3929,7 +4177,7 @@ msgstr "%(related_user)s e %(other_user_di #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "" msgstr[1] "%(display_count)s novo domínio do link precisa de moderação" @@ -4100,21 +4348,21 @@ msgstr "Já estás a seguir a conta %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Já pediste para seguir a conta %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Segue o %(username)s no Fediverse" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Segue %(username)s através de outra conta do Fediverse como BookWyrm, Mastodon ou Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Identificador do utilizador a seguir:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Seguir!" @@ -4155,95 +4403,27 @@ msgstr "Vamos iniciar sessão primeiro..." msgid "Follow %(username)s" msgstr "Seguir %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Estás agora a seguir %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Autenticação de 2 Fatores" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Configurações 2FA atualizadas com sucesso" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Escreve ou copia e cola estes códigos em um lugar seguro." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Deves usá-los na mesma ordem e eles não serão exibidos novamente." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "A Autenticação em Duas Etapas está ativa na tua conta." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Desactivar 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "Podes gerar códigos de backup para usar caso não tenhas acesso à aplicação de autenticação. Se gerares novos códigos, qualquer código gerado anteriormente deixará de funcionar." - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Gerar códigos de backup" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Digitalize o código QR com a tua aplicação de autenticação e, em seguida, insere o código da tua aplicação abaixo para confirmar que a tua applicação está configurado." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Usar chave de configuração" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Nome da conta:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Código:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Insere o código da tua aplicação:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "Podes tornar a tua conta mais segura através do uso de Autenticação de 2 fatores (2FA). Isto irá requerer que insiras um código de utilização única utilizando uma aplicação de telemóvel como Authy, Google Authenticator ou Microsoft Authenticator a cada vez que fizeres log in." - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Confirma a tua palavra-passe para começar a configurar o 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Configurar 2FA" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "" +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" #: bookwyrm/templates/preferences/alias_user.html:16 msgid "Marking another account as an alias is required if you want to move that account to this one." @@ -4328,6 +4508,12 @@ msgstr "Apagar conta permanentemente" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "A exclusão da tua conta não pode ser desfeita. O nome de utilizador não estará disponível para registo no futuro." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Desactivar 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Desactivar a autenticação de dois factores" @@ -4357,12 +4543,12 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Apresentação" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Privacidade" @@ -4371,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Mostrar aviso do objetivo de leitura no feed" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Mostrar utilizadores sugeridos" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Mostrar esta conta nos utilizadores sugeridos" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "A tua conta aparecerá no diretório , e pode ser recomendada a outros utilizadores do BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Fuso Horário Preferido: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Aprovar manualmente os seguidores" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Ocultar os seguidores e os que sigo no perfil" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Privacidade de publicação predefinida:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "Procuras a privacidade na prateleira? Podes definir um nível de visibilidade separado para cada uma das tuas prateleiras. Vai para Os Teus livros, seleciona uma prateleira na barra de divisores e carrega em \"Editar prateleira\"" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4477,6 +4727,10 @@ msgstr "Descarregar ficheiro" msgid "Account" msgstr "Conta" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4512,6 +4766,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Autenticação de 2 Fatores" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Configurações 2FA atualizadas com sucesso" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Escreve ou copia e cola estes códigos em um lugar seguro." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Deves usá-los na mesma ordem e eles não serão exibidos novamente." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "A Autenticação em Duas Etapas está ativa na tua conta." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "Podes gerar códigos de backup para usar caso não tenhas acesso à aplicação de autenticação. Se gerares novos códigos, qualquer código gerado anteriormente deixará de funcionar." + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Gerar códigos de backup" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Digitalize o código QR com a tua aplicação de autenticação e, em seguida, insere o código da tua aplicação abaixo para confirmar que a tua applicação está configurado." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Usar chave de configuração" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Nome da conta:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Código:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Insere o código da tua aplicação:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Podes tornar a tua conta mais segura através do uso de Autenticação de 2 fatores (2FA). Isto irá requerer que insiras um código de utilização única utilizando uma aplicação de telemóvel como Authy, Google Authenticator ou Microsoft Authenticator a cada vez que fizeres log in." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Confirma a tua palavra-passe para começar a configurar o 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Configurar 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4557,6 +4929,7 @@ msgstr "Leitura iniciada" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progresso" @@ -4687,8 +5060,8 @@ msgstr "Consulta de pesquisa" msgid "Search type" msgstr "Tipo de pesquisa" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4698,12 +5071,12 @@ msgstr "Tipo de pesquisa" msgid "Users" msgstr "Utilizadores" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Nenhum resultado encontrado para \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4725,7 +5098,7 @@ msgstr "Editar" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Comunicados" @@ -4743,13 +5116,13 @@ msgstr "Falso" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data de início:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data de conclusão:" @@ -4818,7 +5191,6 @@ msgstr "Cor:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Regras de moderação automática" @@ -4831,35 +5203,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Os utilizadores ou status que já foram reportados (independentemente de o relatório ter sido resolvido) não serão sinalizados." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Horário:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Última execução:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Contagem total de execuções:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Ativado:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Excluir programação" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Executar agora" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Última data de execução não será atualizada" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Agendar verificação" @@ -4904,6 +5284,7 @@ msgstr "Remover regra" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Estado Celery" @@ -4932,6 +5313,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -4975,8 +5357,9 @@ msgid "Active Tasks" msgstr "Tarefas ativas" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4989,6 +5372,8 @@ msgid "Run time" msgstr "Tempo de execução" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioridade" @@ -5021,6 +5406,66 @@ msgstr "Limpar filas pode causar problemas sérios, incluindo perda de dados! Me msgid "Errors" msgstr "Erros" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Razão da desativação:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Domínios Federados" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5028,7 +5473,7 @@ msgid "Dashboard" msgstr "Painel de controlo" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Total de utilizadores" @@ -5037,40 +5482,36 @@ msgstr "Total de utilizadores" msgid "Active this month" msgstr "Atividade este mês" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Estados" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Obras" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Atividade do domínio" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervalo:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dias" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Semanas" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Atividade de inscrição do utilizador" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Atividade de estado" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Obras criadas" @@ -5082,9 +5523,13 @@ msgstr "Registos" msgid "Statuses posted" msgstr "Estados publicados" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5166,7 +5611,7 @@ msgstr "Nenhum domínio de E-Mail bloqueado atualmente" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Configuração do correio eletrónico" @@ -5179,7 +5624,7 @@ msgid "Successfully sent test email." msgstr "Email de teste enviado com sucesso." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Remetente do e-mail:" @@ -5227,15 +5672,6 @@ msgstr "Enviar email de teste" msgid "Add instance" msgstr "Adicionar domínio" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Domínios Federados" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5311,12 +5747,6 @@ msgstr "Notas" msgid "No notes" msgstr "Sem notas" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Todos os utilizadores deste domínio serão desativados." @@ -5369,6 +5799,49 @@ msgstr "Software" msgid "No instances found" msgstr "Nenhum domínio encontrado" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Completado" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5415,7 +5888,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Alguns usuários podem tentar importar um grande número de livros, algo que deves limitar." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Define o valor como 0 para não aplicar qualquer limite." @@ -5435,62 +5908,81 @@ msgstr "dias." msgid "Set limit" msgstr "Definir limite" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Completado" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Utilizador" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Data de Modificação" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Itens pendentes" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Itens bem sucedidos" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Nenhuma importação correspondente foi encontrada." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5654,6 +6146,10 @@ msgstr "Moderação" msgid "Reports" msgstr "Denúncias" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5664,22 +6160,26 @@ msgstr "Domínios de Ligações" msgid "System" msgstr "Sistema" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Estado Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Configurações do domínio" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Configurações do site" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5687,7 +6187,7 @@ msgstr "Configurações do site" msgid "Registration" msgstr "Registo" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5893,6 +6393,61 @@ msgstr "Resolvido" msgid "No reports found." msgstr "Nenhuma denúncia encontrada." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6138,10 +6693,6 @@ msgstr "Seguidores manualmente aprovados:" msgid "Discoverable:" msgstr "Detetável:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Razão da desativação:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detalhes do domínio" @@ -6235,8 +6786,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "O teu domínio parece estar mal configurado. Ele não deve incluir protocolo ou barras inclinadas." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Estás a executar o BookWyrm em modo de produção sem https. USE_HTTPS deve estar ativado em produção." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6246,39 +6797,39 @@ msgstr "Configurações" msgid "Instance domain:" msgstr "Domínio da instância:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocolo:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Utilizando S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Idioma padrão da interface:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Ativar pré-visualização de imagens:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Permitir miniaturas de imagens:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Está tudo bom assim?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Esta é a tua última chance de definir o teu próprio domínio e protocolo." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Podes alterar suas configurações de instância no arquivo .env no teu servidor." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Ver as instruções de instalação" @@ -6295,7 +6846,7 @@ msgid "Need help?" msgstr "Precisas de ajuda?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Criar prateleira" @@ -6303,59 +6854,72 @@ msgstr "Criar prateleira" msgid "Edit Shelf" msgstr "Editar prateleira" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Todos os livros" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importar livros" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s livro" msgstr[1] "%(formatted_count)s livros" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(a exibir %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Editar prateleira" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Apagar prateleira" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Arquivado" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Iniciado" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Concluído" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Até" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Esta prateleira está vazia." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Convidar" @@ -6457,10 +7021,6 @@ msgstr "Alerta de spoiler!" msgid "Comment:" msgstr "Comentar:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Publicação" @@ -6486,7 +7046,7 @@ msgstr "Na página:" msgid "At percent:" msgstr "Na percentagem:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "para" @@ -6531,10 +7091,6 @@ msgstr "Aplicar filtros" msgid "Follow @%(username)s" msgstr "Seguir %(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Seguir" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Cancelar pedido para seguir" @@ -6567,7 +7123,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "O código de fonte do BookWyrm está disponível gratuitamente. Podes contribuir ou reportar problemas no GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Sem avaliação" @@ -6579,7 +7135,7 @@ msgstr[0] "%(half_rating)s estrela" msgstr[1] "%(half_rating)s estrelas" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6808,6 +7364,10 @@ msgstr "Parar de ler" msgid "Finish reading" msgstr "Terminar leitura" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Mostrar o estado" @@ -7163,8 +7723,9 @@ msgid "View profile and more" msgstr "Visualizar perfil e mais" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Ficheiro excede o tamanho máximo: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7183,24 +7744,8 @@ msgstr[1] "" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Actualização de estado fornecido por {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" msgstr "" #: bookwyrm/views/updates.py:45 diff --git a/locale/ro_RO/LC_MESSAGES/django.mo b/locale/ro_RO/LC_MESSAGES/django.mo index 35ba27c9c5..0d4500b28f 100644 Binary files a/locale/ro_RO/LC_MESSAGES/django.mo and b/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/locale/ro_RO/LC_MESSAGES/django.po b/locale/ro_RO/LC_MESSAGES/django.po index dc3a61a7c0..d086b7cb44 100644 --- a/locale/ro_RO/LC_MESSAGES/django.po +++ b/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-02 04:10\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 19:59\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Romanian\n" "Language: ro\n" @@ -33,56 +33,55 @@ msgstr "O lună" msgid "Does Not Expire" msgstr "Nu expiră" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} utilizări" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Nelimitat" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Parolă incorectă" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Parola nu se potrivește" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Data de terminare a lecturii nu poate fi înainte de data de început." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Data de sfârșit a lecturii nu poate fi înainte de data de început." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "" -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "" -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Numele de utilizator sau parola greșite" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Un utilizator cu acest nume există deja" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Un utilizator cu această adresă de email există deja." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "" @@ -90,7 +89,7 @@ msgstr "" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Acest domeniu este blocat. Vă rugăm să contactați administratorul vostru dacă credeți că este o eroare." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Această legătură cu tipul fișierului a fost deja adăugată la această carte. Dacă nu este vizibilă, domeniul este încă în așteptare." @@ -102,8 +101,8 @@ msgstr "Ordonează după listă" msgid "Book Title" msgstr "Titlul cărții" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Rating" @@ -145,8 +144,8 @@ msgstr "Pericol" msgid "Automatically generated report" msgstr "Raport generat automat" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Șters de moderator" msgid "Domain block" msgstr "Blocat de domeniu" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Carte audio" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "Carte digitală" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Roman grafic" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Copertă dură" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Broșură" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentariu" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recenzie" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Urmăriți" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blocați" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federat" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s nu este un remote_id valid" msgid "%(value)s is not a valid username" msgstr "%(value)s nu este un nume de utilizator valid" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nume de utilizator" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Un utilizator cu acel nume există deja." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Un utilizator cu acel nume există deja." msgid "Public" msgstr "Public" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Public" msgid "Unlisted" msgstr "Nelistat" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Nelistat" msgid "Followers" msgstr "Urmăritori" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Urmăritori" msgid "Private" msgstr "Privat" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Activ" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Eroare la încărcarea cărții" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Nu a putut fi găsită o potrivire pentru carte" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratuită" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Cumpărabilă" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Disponibilă pentru împrumut" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Aprovat" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Comentariu" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "" @@ -363,123 +429,160 @@ msgstr "" msgid "Deleted item" msgstr "" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Recenzii" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Comentarii" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citate" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Orice altceva" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Friză cronologică principală" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Acasă" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Friză cronologică de cărți" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Cărți" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English (engleză)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (catalană)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (germană)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (spaniolă)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (galiciană)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (italiană)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (finlandeză)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (franceză)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (lituaniană)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (norvegiană)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (portugheză braziliană)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (portugheză europeană)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (română)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (suedeză)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (chineză simplificată)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (chineză tradițională)" @@ -517,9 +620,7 @@ msgid "The file you are uploading is too large." msgstr "" #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." msgstr "" #: bookwyrm/templates/500.html:4 @@ -616,7 +717,7 @@ msgid "Statuses posted:" msgstr "Statusuri postate:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Versiunea programului:" @@ -728,7 +829,7 @@ msgstr "Cea mai scurtă lectură a sa…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -810,44 +911,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 -msgid "Website" +msgid "View on Wikidata" msgstr "" #: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Vizualizați intrarea ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Încărcați date" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Vizualizați în OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Vizualizați în Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Vizualizați în LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Vizualizați în Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Cărți de %(name)s" @@ -884,8 +989,8 @@ msgid "Name:" msgstr "Nume:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separați valori multiple prin virgulă." @@ -897,50 +1002,54 @@ msgstr "Biografie:" msgid "Wikipedia link:" msgstr "Legătură Wikipedia:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Data de naștere:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Data de moarte:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Date de identificare ale autorului" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Cheie OpenLibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "ID Inventaire:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Cheie LibraryThing:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Cheie GoodReads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -948,7 +1057,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -962,14 +1071,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Salvați" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -979,6 +1088,7 @@ msgstr "Salvați" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -996,34 +1106,38 @@ msgstr "Încărcatul de date se va conecta la %(source_name)s #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Confirmați" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Nu s-a putut stabili conexiunea la distanță." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Editați carte" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Adăugați o copertă" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Eșec la încărcarea coperții" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Clic pentru a mări" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" @@ -1031,17 +1145,17 @@ msgstr[0] "(%(review_count)s recenzie)" msgstr[1] "" msgstr[2] "(%(review_count)s recenzii)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Adăugați o descriere" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descriere:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" @@ -1049,49 +1163,49 @@ msgstr[0] "%(count)s ediție" msgstr[1] "" msgstr[2] "%(count)s ediții" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Ați pus această ediție pe raftul:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "O ediție diferită a acestei cărți este pe %(shelf_name)s raftul vostru." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Activitatea dvs. de lectură" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Adăugați date de lectură" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Nu aveți nicio activitate de lectură pentru această carte." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Recenziile dvs." -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Comentariile dvs." -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Citatele dvs." -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Subiecte" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Locuri" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1099,18 +1213,18 @@ msgstr "Locuri" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Liste" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Adăugați la listă" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1133,40 +1247,50 @@ msgid "Copied ISBN!" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Număr OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Adăugați copertă" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Încărcați copertă:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "" @@ -1240,7 +1364,7 @@ msgid "This is a new work" msgstr "Aceasta este o operă nouă" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1293,125 +1417,129 @@ msgstr "Înapoi" msgid "Title:" msgstr "Titlu:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Subtitlu:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Numărul din serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Limbi:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Subiecte:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Adăugați subiect" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Înlăturați subiect" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Adăugați un alt subiect" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publicație" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Editor:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Prima dată de publicare:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Data de publicare:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Autori" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Înlăturați %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Pagina de autori pentru %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Adăugați autori:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Adaugă autor" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Necunoscut" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Adăugați un alt autor" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Copertă" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Proprietăți fizice" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Detalii de format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Pagini:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Date de identificare ale cărții" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "ID OpenLibrary:" @@ -1439,7 +1567,7 @@ msgid "Any" msgstr "Oricare" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Limbă:" @@ -1500,12 +1628,15 @@ msgid "Domain" msgstr "Domeniu" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1517,8 +1648,8 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1564,8 +1695,8 @@ msgstr "Părăsind BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Această legătură vă duce la: %(link_url)s.
    Doriți să continuați?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Continuați" @@ -1621,7 +1752,19 @@ msgstr "" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Încărcatul de date se va conecta la %(source_name)s și verifica orice metadate despre această carte care nu sunt prezente aici. Metadatele existente nu vor fi suprascrise." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Editați stare" @@ -1648,7 +1791,7 @@ msgstr "Cod de confirmare:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Trimiteți" @@ -1730,12 +1873,12 @@ msgstr "Sugerate" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1858,8 +2001,8 @@ msgstr "Salutare," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm este găzduit de %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1877,8 +2020,8 @@ msgstr "Alăturați-vă acum" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Aflați mai multe despre %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2054,19 +2197,19 @@ msgid "Add to your books" msgstr "Adăugați la cărțile dvs." #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "De citit" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Lectură în curs" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2075,7 +2218,7 @@ msgid "Read" msgstr "Citite" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Lectură oprită" @@ -2108,7 +2251,7 @@ msgstr "Puteți adăuga cărți când începeți să folosiți %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Căutați" @@ -2762,6 +2905,7 @@ msgstr "Puteți crea sau vă alătura unui grup cu alți utilizatori. Grupurile #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupuri" @@ -2877,11 +3021,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "" @@ -2907,69 +3053,81 @@ msgid "OpenLibrary (CSV)" msgstr "" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "" -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Fișierul de date:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Includeți recenzii" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Setare de confidențialitate pentru recenziile importate:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importați" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "" -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "" -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Importuri recente" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Niciun import recent" @@ -2993,20 +3151,24 @@ msgid "Imports" msgstr "Importuri" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Import început:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "În progres" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Reîmprospătați" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "" @@ -3024,6 +3186,7 @@ msgid "Review items" msgstr "Revizuiți elementele" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3032,6 +3195,7 @@ msgstr[1] "" msgstr[2] "%(display_counter)s importuri de elemente eșuate." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Vizualizați și depanați elementele eșuate" @@ -3040,12 +3204,14 @@ msgid "Row" msgstr "Linie" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titlu" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3054,8 +3220,8 @@ msgid "Openlibrary key" msgstr "Cheie OpenLibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Autor" @@ -3063,13 +3229,9 @@ msgstr "Autor" msgid "Shelf" msgstr "Raft" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recenzie" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Carte" @@ -3087,6 +3249,8 @@ msgid "View imported review" msgstr "Vizionați recenzia importată" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importat" @@ -3122,114 +3286,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Profilul utilizatorului" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3253,15 +3422,18 @@ msgid "Reject" msgstr "Respingeți" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Elemente a căror importare a eșuat" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Depanare" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Reîncercarea unui import poate regla elemente lipsă în cazuri precum:" @@ -3270,21 +3442,96 @@ msgid "The book has been added to the instance since this import" msgstr "Cartea a fost adăugată instanței de când importul acesta" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "O problemă temporară sau o depășire a timpului limită a provocat ca sursa de date externă să fie indisponibilă." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm a fost actualizat de la acest import cu reglări de buguri" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Contactați-vă adminul sau semnalați o problemă dacă vedeți elemente a căror importare a eșuat neașteptat." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Total" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statusuri" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Creați un cont" @@ -3335,7 +3582,7 @@ msgid "Login" msgstr "Autentificare" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Autentificați-vă" @@ -3351,22 +3598,22 @@ msgstr "Succes! Adresa email a fost confirmată." msgid "Username:" msgstr "Nume de utilizator:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Parolă:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Parolă uitată?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Mai multe despre acest site" @@ -3394,7 +3641,7 @@ msgstr "Reinițializați parola" msgid "Reactivate Account" msgstr "" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "" @@ -3404,8 +3651,8 @@ msgid "%(site_name)s search" msgstr "Căutare %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Căutați o carte, un utilizator sau o listă" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3618,6 +3865,8 @@ msgid "List position" msgstr "Poziția listei" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Stabiliți" @@ -3945,7 +4194,7 @@ msgstr "%(related_user)s și alți %(other #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -4118,21 +4367,21 @@ msgstr "Îl urmăriți deja pe %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Ați solicitat deja să-l urmăriți pe %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Urmăriți %(username)s pe Fediverse" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Urmăriți %(username)s cu un alt cont Fediverse precum BookWyrm, Mastodon sau Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Cont cu care să-l urmăriți:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Urmăriți!" @@ -4173,102 +4422,34 @@ msgstr "Să ne conectăm mai întâi..." msgid "Follow %(username)s" msgstr "Urmăriți %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Sunteți acum abonat la %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." msgstr "" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." msgstr "" #: bookwyrm/templates/preferences/alias_user.html:25 @@ -4346,6 +4527,12 @@ msgstr "Ștergeți permanent contul" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Ștersul contului dvs. nu poate fi revocată. Numele de utilizator nu va fi valabil pentru înregistrare mai târziu." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "" @@ -4375,12 +4562,12 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Afișați" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Confidențialitate" @@ -4389,94 +4576,159 @@ msgid "Show reading goal prompt in feed" msgstr "Afișați obiectivul de lectură în flux" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Afișați utilizatorii sugerați" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Afișați acest cont ca utilizator sugerat" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Contul dvs. va apărea în dosar și va putea fi recomandat altor utilizatori de BookWyrm." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Fus orar preferat: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Temă:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Aprobați manual urmăritorii" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Ascundeți urmăritorii pe profil" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Confidențialitatea implicită a postărilor:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4495,6 +4747,10 @@ msgstr "Descărcați fișierul" msgid "Account" msgstr "Cont" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4530,6 +4786,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4575,6 +4949,7 @@ msgstr "A început lectura" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Progres" @@ -4705,8 +5080,8 @@ msgstr "Conținutul căutării" msgid "Search type" msgstr "Tipul căutării" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4716,12 +5091,12 @@ msgstr "Tipul căutării" msgid "Users" msgstr "Utilizatori" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Niciun rezultat găsit pentru „%(query)s”" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4744,7 +5119,7 @@ msgstr "Editați" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Anunțuri" @@ -4762,13 +5137,13 @@ msgstr "Fals" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Data de început:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Data de sfârșit:" @@ -4837,7 +5212,6 @@ msgstr "Culoare:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Reguli de auto-moderare" @@ -4850,35 +5224,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Utilizatorii sau stările care au fost deja raportate (indiferent dacă raportul a fost rezolvat sau nu) nu vor fi marcați." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Program:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Ultima rulare:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Numărul total de rulări:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Activat:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Ștergeți programul" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Rulați acum" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Ultima dată de rulare nu va fi actualizată" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Programați scanare" @@ -4923,6 +5305,7 @@ msgstr "Eliminați regulă" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "" @@ -4951,6 +5334,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -4994,8 +5378,9 @@ msgid "Active Tasks" msgstr "" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "" @@ -5008,6 +5393,8 @@ msgid "Run time" msgstr "" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "" @@ -5040,6 +5427,66 @@ msgstr "" msgid "Errors" msgstr "" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Motiv de dezactivare:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Instanțe federate" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5047,7 +5494,7 @@ msgid "Dashboard" msgstr "Tablou de bord" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Număr total de utilizatori" @@ -5056,40 +5503,36 @@ msgstr "Număr total de utilizatori" msgid "Active this month" msgstr "Activi această lună" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statusuri" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Opere" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Activitatea instanței" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Interval:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Zile" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Săptămâni" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Activitate de înscriere a utilizatorilor" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Activitate stare" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Opere create" @@ -5101,9 +5544,13 @@ msgstr "Înscrieri" msgid "Statuses posted" msgstr "Stări publicate" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5189,7 +5636,7 @@ msgstr "Niciun domeniu email blocat în prezent" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "" @@ -5202,7 +5649,7 @@ msgid "Successfully sent test email." msgstr "" #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Expeditor email:" @@ -5250,15 +5697,6 @@ msgstr "" msgid "Add instance" msgstr "Adăugați instanță" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Instanțe federate" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5334,12 +5772,6 @@ msgstr "Notes" msgid "No notes" msgstr "Nicio notă" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blocați" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Toți utilizatorii de pe această instanță vor fi dezactivați." @@ -5392,6 +5824,49 @@ msgstr "Program" msgid "No instances found" msgstr "N-a fost găsită nicio instanță" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5438,7 +5913,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "" #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "" @@ -5458,62 +5933,81 @@ msgstr "" msgid "Set limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5677,6 +6171,10 @@ msgstr "Moderare" msgid "Reports" msgstr "Raporturi" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5687,22 +6185,26 @@ msgstr "Legături către domenii" msgid "System" msgstr "" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Setările instanței" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Setările site-ului" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5710,7 +6212,7 @@ msgstr "Setările site-ului" msgid "Registration" msgstr "Înregistrare" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5916,6 +6418,61 @@ msgstr "Rezolvat" msgid "No reports found." msgstr "Niciun raport găsit." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6161,10 +6718,6 @@ msgstr "Urmăritori aprobați manual:" msgid "Discoverable:" msgstr "Vizibil public:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Motiv de dezactivare:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Detaliile instanței" @@ -6258,9 +6811,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Domeniul dumneavoastră pare să fie configurat greșit. Nu ar trebui să includă protocoale sau bare oblice." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Rulați BookWyrm în modul de producție fără HTTPS.\n" -"USE_HTTPS ar trebui să fie activat în producție." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6270,39 +6822,39 @@ msgstr "Setări" msgid "Instance domain:" msgstr "Domeniul instanței:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protocol:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Folosește S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Limba de bază a interfeței:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Activați imaginile de previzualizare:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Activați miniaturile imagine:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Totul arată bine?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Această este ultima șansă a dvs. pentru a seta domeniul și protocolul." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Puteți schimba setările instanței în fișierul .env de pe serverul dvs." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Vizualizați instrucțiunile de instalare" @@ -6319,7 +6871,7 @@ msgid "Need help?" msgstr "Aveți nevoie de ajutor?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Creați un raft" @@ -6327,16 +6879,16 @@ msgstr "Creați un raft" msgid "Edit Shelf" msgstr "Editați raftul" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Toate cărțile" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importați cărți" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" @@ -6344,43 +6896,56 @@ msgstr[0] "%(formatted_count)s carte" msgstr[1] "" msgstr[2] "%(formatted_count)s cărți" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(se afișează %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Editați raft" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Ștergeți raft" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Pusă pe raft" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Începută" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Terminată" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Până la" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Acest raft este gol." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Invitați" @@ -6483,10 +7048,6 @@ msgstr "Divulgare intrigă!" msgid "Comment:" msgstr "Comentariu:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Postați" @@ -6512,7 +7073,7 @@ msgstr "Pe pagină:" msgid "At percent:" msgstr "Procent:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "" @@ -6557,10 +7118,6 @@ msgstr "Aplicați filtrele" msgid "Follow @%(username)s" msgstr "Urmăriți @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Urmăriți" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Revocați cererea de urmărire" @@ -6593,7 +7150,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "" #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Fără evaluare" @@ -6606,7 +7163,7 @@ msgstr[1] "" msgstr[2] "%(half_rating)s stele" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6839,6 +7396,10 @@ msgstr "Opriți lectura" msgid "Finish reading" msgstr "Terminați de citit" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Arătați stare" @@ -7196,8 +7757,9 @@ msgid "View profile and more" msgstr "Vizualizați profil și multe altele" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Fișierul depășește dimensiuneaz maximă: 10Mo" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7217,24 +7779,8 @@ msgstr[2] "" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Actualizări de stare de la {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" msgstr "" #: bookwyrm/views/updates.py:45 diff --git a/locale/ru_RU/LC_MESSAGES/django.mo b/locale/ru_RU/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..45ca2f1eae Binary files /dev/null and b/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/locale/ru_RU/LC_MESSAGES/django.po b/locale/ru_RU/LC_MESSAGES/django.po new file mode 100644 index 0000000000..fcacf0755c --- /dev/null +++ b/locale/ru_RU/LC_MESSAGES/django.po @@ -0,0 +1,7831 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Russian\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ru\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Один День" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Одна Неделя" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Один Месяц" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Не истекает" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Без ограничений" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Текущий пароль не правильный" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Пароли не совпадают" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Неверный пароль" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Дата окончания чтения не может быть раньше даты начала." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Дата окончания чтения не может быть раньше даты начала." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Дата окончания чтения не может быть раньше даты начала." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Дата завершения чтения не может быть раньше даты начала." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Неверное имя пользователя или пароль" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Пользователь с этим именем уже существует" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Пользователь с этим e-mail адресом уже существует." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Проверочный код введен неверно" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Этот домен заблокирован. Обратитесь к администратору, если вы считаете, что это ошибка." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Эта ссылка с типом файла уже добавлена для этой книги. Если она не видна, то домен все еще находится в ожидании." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Список по-порядку" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Название книги" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Оценка" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Сортировать по" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "По возрастанию" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "По убавынию" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Основной" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Успех" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Ссылка" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Внимание" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Опасность" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Автоматически созданный отчёт" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Ожидает" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Самоудаление" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "Самодеактивация" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Приостановка модератора" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Удаление модератора" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Доменная блокировка" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Аудиокнига" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "Электронная книга" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Графический роман" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Твёрдая обложка" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Мягкая обложка" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Подписаться" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Заблокировать" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Федеративный" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Заблокировано" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s не является допустимым удалённым идентификатором" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s недопустимое имя пользователя" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "имя пользователя" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Пользователь с таким именем уже существует." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Публичный" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Не включённый в список" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Подписчики" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Частный" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Завершено" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Остановлено" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Импорт остановлен" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Ошибка при загрузке книги" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Не удалось найти соответствие для книги" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "Сбой" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Бесплатно" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Можно купить" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Доступно в долг" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Согласовано" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "Решённый отчет" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "Отчёт снова открыт" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "Отчёт отправлен" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "Сообщено пользователю" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "Замороженный пользователь" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "Восстановленный пользователь" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "Изменены права пользователя" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "Удаленный аккаунт" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "Заблокированный домен" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "Одобренный домен" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "Элемент удален" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "Статус %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Отзывы" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Комментарии" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Цитаты" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Всё остальное" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Главная Лента времени" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Главная" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Хронология книг" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Книги" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "English (Английский)" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (Каталанский)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (немецкий)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (Эсперанто)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (испанский)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (Баскский)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (Галицкий)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (Итальянский)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Корейский)" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (Финский)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (французский)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (литовский)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Нидерланды (голландский)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (норвежский)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (Польский)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (Бразильский Португальский)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (Европейский Португальский)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (румынский)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (Шведский)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "Українська (Украинский)" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (упрощенный китайский)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (Традиционный китайский)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "О, нет!" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "Доступ запрещён" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Не найдено" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Страница, которую Вы запросили, кажется, не существует!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "Файл слишком велик" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "Загружаемый файл слишком велик." + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Опа!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Ошибка Сервера" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Что-то пошло не так! Извините за это." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "О себе" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Добро пожаловать на %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s является частью BookWyrm, сети независимых самоуправляемых сообществ для читателей. Хотя вы можете легко взаимодействовать с пользователями в любом месте сети BookWyrm, это сообщество уникальное." + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)s - самая любимая книга %(site_name)s, средний рейтинг %(rating)s из 5." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "Больше %(site_name)s пользователей хотят прочитать %(title)s, чем любую другую книга." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Отслеживайте своё чтение, обсуждайте книги, пишите отзывы и узнавайте, что читать дальше. BookWyrm - программное обеспечение человеческого масштаба, свободное от рекламы, анти-корпоративное и ориентированное на сообщество, разработанное, чтобы оставаться небольшим и персональным. Если у вас есть пожелания, отчеты об ошибках или грандиозные мечты, то протяните руку и сделайте так, чтобы вас услышали." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Встречайте ваших администраторов" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "Модераторы и администраторы %(site_name)s поддерживают работоспособность сайта, следят за соблюдением .правил поведения и реагируют, когда пользователи сообщают о спаме и плохом поведении." + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Модератор" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Администратор" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Отправить личное сообщение" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Правила поведения" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Пользователей активно:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Отправлено статусов:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Версия программы:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "О %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Политика конфиденциальности" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s в книгах" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s в книгах" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Поделиться страницей" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Копировать адрес" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Скопировано!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Скрыть страницу" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Страница общедоступна" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "Замечательно!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "по" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s страниц" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Изменить имя автора" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Об авторе" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Алиасы:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Дата рождения:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Дата смерти:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Внешние ссылки" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Википедия" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "Сайт" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Просмотреть запись ISNI" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Загрузить данные" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "Просмотреть на OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Посмотреть на Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "Посмотреть на LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Посмотреть на Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Книги по %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Изменить имя автора:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Добавлено:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Обновленно:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Последним редактировал:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Метаданные" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Название:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Разделите несколько значений запятыми." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Биография:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Ссылка на Википедию:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Дата рождения:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Дата смерти:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Идентификаторы автора" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Ключ OpenLibrary:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "Идентификатор библио-сети Inventaire.io:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Ключ для Librarything:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Goodreads ключ:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Сохранить" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Отмена" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Подтвердите" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "Не удается подключиться к удаленному источнику." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Редактировать книгу" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Добавить обложку" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Ошибка загрузки обложки" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Нажмите, чтобы увеличить" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "(Обзоров: %(review_count)s)" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Добавить описание" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Описание:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s редакция" +msgstr[1] "%(count)s" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Вы отложили это издание в:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "другая редакция этой книги находится на вашей %(shelf_name)s полке." + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Ваша активность по чтению" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Добавить даты прочтения" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "У вас нет активности по чтению для этой книги." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Ваши отзывы" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Ваши комментарии" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Ваши цитаты" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Жанры" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Места" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Списки" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Добавить в список" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Добавить" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "Копировать ISBN" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBN скопирован!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLC номер:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN (Стандартный идентификационный номер Amazon):" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Добавить обложку" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Загрузить свою обложку:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Просмотр обложки" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Закрыть" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Изменить \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Добавить книгу" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "Не удалось сохранить книгу, смотрите сообщение об ошибке ниже." + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Подтвердите информацию о книге" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "Является ли \"%(name)s\" одним из этих авторов?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Автор %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "Автор %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Узнайте больше на isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Это новый автор" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Создание нового автора: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Является ли это изданием существующей работы?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Это новая работа" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Назад" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Название:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "Сортировка по названию:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Подзаголовок:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Серии:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Номер серии:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Языки:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Жанры:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Добавить жанр" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Удалить жанр" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Добавить ещё жанр" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Публикация" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Издатель:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Дата первой публикации:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Дата публикации:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Авторы" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Убрать %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Страница автора для %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Добавить авторов:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Добавить автора" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Джейн До" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Добавить другого автора" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Обложка" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Физические свойства" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Формат:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Детали формата:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Страницы:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Идентификаторы книги" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Идентификатор OpenLibrary:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Редакции %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "Издания %(work_title)s" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Мы не можем найти токены, которые ищете?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Добавить другую опцию" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "Любой" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Язык:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Поиск редакций" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Тип файла:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Исправить ссылки" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Ссылки для \"%(title)s\"" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Добавлено" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Тип файла" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Домен" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Статус" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Операции" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Неизвестный пользователь" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Сообщить о спаме" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Для этой книги нет ссылок." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Сослаться на файл" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Продолжить" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s страниц" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s страниц" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s язык" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Опубликовано %(date)s пользователем %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Опубликовано %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Опубликовано %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "оценил(а) на" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Редактировать состояние" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Подтвердить электронную почту" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Подтвердите ваш адрес эл. почты" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Код подтверждения был отправлен на адрес электронной почты, который вы использовали для регистрации учетной записи." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Извините! Мы не смогли найти этот код." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Код подтверждения:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Отправить" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Не удалось найти ваш код?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "Адрес эл. почты:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Послать ссылку снова" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Сообщество" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Локальные пользователи" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Федеративное сообщество" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Каталог" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Сделайте свой профиль обнаруживаемым для других пользователей BookWyrm." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Войти в каталог" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Убрать сообщение" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Упорядочить по" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "книг(и) на вашей полке" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "%(username)s хочет прочитать %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "%(username)s процитировал %(book_title)s" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "Последний шаг перед тем, как вы присоединитесь к %(site_name)s! Пожалуйста, подтвердите свой адрес электронной почты, нажав на ссылку ниже:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Подтвердить эл. почту" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Привет," + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Связаться с администратором сайта" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "Присоединиться к BookWyrm" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "Личные Сообщения" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "У вас пока нет сообщений." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Ваши книги" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Книг здесь пока нет! Попробуйте найти книгу, чтобы начать" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "Есть ли у вас данные о книгах из других служб, таких как GoodReads?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Импортируйте историю прослушиваний" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "На кого подписаться" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "К прочтению" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Сейчас читаю" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Прочитано" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Остановленное Чтение" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Что вы читаете?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Искать книгу" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Поиск" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Рекомендованные книги" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "Результат поиска" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Популярно на %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Сохранить и продолжить" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Добро пожаловать" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Это несколько первых шагов, которые помогут вам начать." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Создать свой профиль" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Добавить книги" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Найти друзей" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Пропустить" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Завершить" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Отображаемое имя:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "О себе:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Немного о вас" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Аватар:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Одобрять подписчиков вручную:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Показать этот аккаунт в списке рекомендаций:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Ваша учетная запись появится в каталоге и может быть рекомендована другим пользователям BookWyrm." + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "Вы можете подписаться на людей на других серверах BookWyrm или таких федеративных сервисах, как Mastodon." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Искать пользователя" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "Создать группу" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Удалить эту группу?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Это действие нельзя будет отменить" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Удалить" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Править группу" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Имя группы:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Описание группы:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Удалить группу" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Члены этой группы могут создавать курируемые группой списки." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Создать список" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "В этой группе нет списков" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Править группу" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Покинуть группу" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Менеджер" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "Групп не найдено." + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "Следующая" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Уведомления" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "Группы" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "Сейчас вам можно импортировать %(display_size)s книг в %(import_limit_reset)s день." +msgstr[1] "" +msgstr[2] "" +msgstr[3] "Сейчас вам можно импортировать %(display_size)s книг в %(import_limit_reset)s дней." + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "У вас осталось %(display_left)s." + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "Источник данных:" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "Вы можете загрузить данные Goodreadsх с страницы импорта/экспорта вашей учетной записи Goodreads." + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "Файл данных:" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "Импортировать" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "Последнее обновление" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "В процессе" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "Обновить" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "Название" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "ISBN" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "Автор" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "Полка" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "Нет элементов, которые в настоящее время нуждаются в проверке" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "Последние книги" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Децентрализовано" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "Антикорпоративно" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "Попросить приглашение" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "Спасибо, Ваш запрос получен!" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "Ваш Аккаунт" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "Вход" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "Войти" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "Успех! Адрес электронной почты подтвержден." + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Имя пользователя:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "Пароль:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "Забыли пароль?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "Подтвердить пароль:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "Сканировать штрих-код" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "пароль" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "Не сохранять" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "Создан %(username)s и управляется %(groupname)s" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "Создано и курировано %(username)s" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "Удалить этот список?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "Править список" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "Этот список пуст" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "Курирование списка:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "Закрытый" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "Только вы сможете добавлять и удалять книги в этот список" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "Курированный" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "Любой может добавить книгу, после вашего одобрения" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "Открытый" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "Любой может добавлять книги в этот список" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "Групповой" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "Создать группу" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "Удалить список" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "Добавить книгу" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "поиск" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "Списки не нашлись." + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "Ваши списки" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "Все списки" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "Сохранённые списки" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "Выйти" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "Упоминания" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "Подписаться на %(username)s из другого аккаунта Fediverse, как BookWyrm, Mastodon или Pleroma." + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "Подписаться на Fediverse" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "Эта ссылка откроется во всплывающем окне" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "Ой ай..." + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "Черный список" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "Нет заблокированных пользователей." + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "Сменить пароль" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "Пароль успешно изменен" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "Текущий пароль:" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "Новый пароль:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "Удалить аккаунт" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "Навсегда удалить аккаунт" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "Удаление вашей учетной записи не может быть отменено. Имя пользователя не будет доступно для регистрации в будущем." + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "Профиль" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "Часовой пояс: " + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "Оформление:" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "Вручную одобрять подписчиков" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "Скрыть подписчиков и подписки в профиле" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "Ищете приватность полок? Вы можете установить отдельный уровень видимости для каждой из ваших полок. Перейдите в Книги, выберите полку из панели вкладок и нажмите кнопку \"Редактировать полку.\"" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "Загрузить файл" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "Данные" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "Взаимосвязи" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "Остановка Чтения %(book_title)s" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "Прогресс" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "Прогресс обновлений:" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "остановлено" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "\n" +" Сканировать штрих-код\n" +" " + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "Запрос камеры..." + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "Предоставьте доступ к камере для сканирования штрих-кода книги." + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "Не удалось получить доступ к камере" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "Сканирую..." + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "Соедините штрих-код вашей книги с камерой." + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "ISBN просканирован" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "Искать книгу:" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "Ничего не найдено по запросу \"%(query)s\"" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "%(result_count)s результатов найдено" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "Расписание:" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "Последний запуск:" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "Общее количество запусков:" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "Включено:" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "Удалить расписание" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "Выполнить сейчас" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "Последняя дата запуска не будет обновлена" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "Сканирование по расписанию" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "Какой поджанр музыки вам нравится больше всего ( Вам нужно выбрать )" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "Очереди" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "Потоки" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "Входящие" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "Импорт вызван" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "Связи" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "Предлагаемые пользователи" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "Проч." + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "Невозможно подключиться к брокеру Redis" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "Нет активных задач" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "Не удалось подключиться к серверу Celery" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "Очистка очереди" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "Очистка очереди может привести к серьезным проблемам, вплоть до потери данных! Делайте это, если вы действительно знаете, что вы делаете. Вы должны закрыть Celery worker, прежде чем вы это делать." + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Обновить" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "Дни" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "Недели" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "Проверьте EMAIL_SENDER_NAME и EMAIL_SENDER_DOMAIN в вашем файле .env." + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "В вашем экземпляре отсутствует кодекс поведения." + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "В вашем экземпляре отсутствует политика конфиденциальности." + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Разблокировать" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "Последнее обновление" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "Пока импорт отключен, пользователи не смогут начать новых импортов, но существующие импорты будут работать." + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "Приглашения" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "Ответ" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "Добавить IP адрес" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "IP Адрес:" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "Задайте вопрос для запросов на приглашение" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "Вопрос:" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "Действия модератора" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "%(user)s открыл этот отчет" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "%(user)s прокомментировал этот отчет:" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "%(user)s сделал по этому отчёту:" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "Одобрить домен" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "Правила поведения:" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "Оформление по умолчанию:" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "Вы уверены, что хотите удалить аккаунт пользователя %(username)s? Это действие не может быть отменено. Чтобы продолжить, введите пароль для подтверждения удаления." + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "Удаленные пользователи" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "Перейти к администратору пользователя" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "Дата добавлена:" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "Вручную одобренные подписчики:" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "Настройки" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "Язык по умолчанию:" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "Создать полку" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "Править полку" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "Все книги" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "Импортировать книги" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "Править полку" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "Удалить полку" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "Начата" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "Закончена" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "До" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "Эта полка пуста." + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "Продвинуть" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "Ответить" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "Включить предупреждение о спойлерах" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "Спойлеры/предупреждения о содержимом:" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "Впереди спойлеры!" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "Комментарий:" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "Цитата:" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "Отзыв:" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "Лайк" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "Снять лайк" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "Фильтры" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "Фильтры применены" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "Сбросить фильтры" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "Применить фильтры" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "Подписаться на @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "Отписаться от @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "Отписаться" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "Принять" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "Документация" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "Поддержать %(site_name)s на %(support_title)s" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "Исходный код BookWyrm находится в свободном доступе. Вы можете внести свой вклад или сообщить о проблемах на GitHub." + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "Поставьте перед собой цель, сколько книг вы прочитаете в %(year)s году, и отслеживайте свои успехи в течение года." + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "Успех!" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "страница %(page)s из %(total_pages)s" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "страница %(page)s" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "Предыдущая" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "Только подписчикам" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "Остановить чтение \"%(book_title)s\"" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "Остановленное чтение" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "Выберите разумно! Ваше имя пользователя не может быть изменено." + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "Зарегистрироваться" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "Пожаловаться на @%(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "Жалоба будет отправлена модераторам %(site_name)s для рассмотрения." + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "Подробнее об этой жалобе:" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "Убрать из %(name)s" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "Остановка чтения" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "прервано чтение %(book)s пользователем %(author_name)s" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "прервано чтение %(book)s" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "хочет прочитать %(book)s от %(author_name)s" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "хочет прочитать %(book)s" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "Книги %(username)s" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "Ваши Группы" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "Создать список" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "Регистрация %(date)s" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "%(username)s не имеет подписчиков" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s не подписан ни на одного пользователя" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "Посмотреть все книги" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "RSS канал" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "%(display_count)s подписчик" +msgstr[1] "" +msgstr[2] "%(display_count)s подписчиков" +msgstr[3] "%(display_count)s подписчиков" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "Профиль пользователя и прочее" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + diff --git a/locale/sk_SK/LC_MESSAGES/django.mo b/locale/sk_SK/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..f746f9bfd6 Binary files /dev/null and b/locale/sk_SK/LC_MESSAGES/django.mo differ diff --git a/locale/sk_SK/LC_MESSAGES/django.po b/locale/sk_SK/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2f6a2b4b2b --- /dev/null +++ b/locale/sk_SK/LC_MESSAGES/django.po @@ -0,0 +1,7829 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Slovak\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: sk\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Jeden deň" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Jeden týždeň" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Jeden mesiac" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Nevyprší" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Neobmedzené" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Nesprávne heslo" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Heslá sa nezhodujú" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Nesprávne heslo" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Dátum dokončenia čítania nemôže byť pred dátumom začatia čítania." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Dátum zastavenia čítania nemôže byť pred dátumom začatia čítania." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Dátum zastavenia čítania nemôže byť v budúcnosti." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Dátum dokončenia čítania nemôže byť v budúcnosti." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Užívateľské meno, alebo heslo sú nesprávne" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Užívateľ s týmto užívateľským menom už existuje" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Užívateľ s týmto emailom už existuje." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Táto emailová adresa nemôže byť zaregistrovaná." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Nesprávny kód" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Zoradenie zoznamu" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Názov knihy" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Hodnotenie" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Zoradiť podľa" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Vzostupne" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Zostupne" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Úspešné" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Odkaz" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Upozornenie" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Nebezpečenstvo" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Automaticky vytvorené hlásenie" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Čakajúc" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Samo zmazanie" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Vymazanie moderátorom" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Blokovanie domény" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Audiokniha" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "eKniha" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Tvrdá väzba" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Brožovaná väzba" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Komentár" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recenzia" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Citácia" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Nasledovať" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokovať" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "chyba pripojenia" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Federované" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Blokovaný/á" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "užívateľské meno" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Užívateľ s týmto užívateľským menom už existuje." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Verejne" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Nezaradený" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Nasledovatelia" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Súkromne" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "Aktívny" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Hotovo" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Zastavené" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Nahrávanie zastavené" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Chyba pri načítaní knihy" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Pri knihe sa nepodarila nájsť zhoda" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "Zlyhalo" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Zdarma" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Dá sa kúpiť" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Dostupné požičať" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Schválené" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "Nahlásenie vyriešené" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "Znovu otvorené hlásenie" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "Správa poslaná nahlásenému užívateľovi" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "Vylúčený užívateľ" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "Zmenená úroveň povolení pre užívateľa" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "Vymazaný užívateľský účet" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "Blokovaná doména" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "Schválená doména" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "Vymazaná položka" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "príspevok od %(display_name)s" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s komentár ku %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s citácia z %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s recenzia knihy %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Recenzie" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Komentáre" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Citácie" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Všetko ostatné" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Domáca časová os" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Domov" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Časová os kníh" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Knihy" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "Angličtina" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Nemecky" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Španielsky" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Taliansky" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "Kórejsky" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Fínsky" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Francúzky" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Dánsky" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Nórsky" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Poľsky" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Rumunsky" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Švédsky" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "Ukrajinsky" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "Oh, nie!" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "Povolenie zamietnuté" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "Nemáte povolenie zobraziť túto stránku, alebo vykonať tento úkon. Tvoja užívateľská úroveň povolení je %(level)s." + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Nenájdené" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Stránka, ktorú ste vyžiadali sa zdá neexistuje!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "Súbor je príliš veľký" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "Súbor, ktorý nahrávate, je príliš veľký." + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Chyba servera" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Niečo sa pokazilo! Ospravedlňujeme sa za to." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "O" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Vitajte na %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)s je na %(site_name)s najobľúbenejšou knihou, s priemerným hodnotením %(rating)s z 5." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "Viac užívateľov %(site_name)s chce čítať %(title)s, než akúkoľvek inú knihu." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Sleduj svoje čítanie, diskutuj o knihách, píš recenzie a objavuj, čo čítať ďalej. Vždy bez reklám, protikorporátny a komunitne orientovaný, BookWyrm je softvér ľudskej veľkosti, navrhnutý tak, aby ostal malý a osobný. Pokiaľ máte nápady na zlepšenie, hlásenie chýb, alebo veľké sny, ozvite sa a dajte o sebe vedieť." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Stretni tvojich administrátorov" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Moderátor" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Správca" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Poslať súkromnú správu" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Aktívni užívatelia:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Poslaných príspevkov:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Verzia softvéru:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "O %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Podmienky súkromia" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s v knihách" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s v knihách" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Zdieľať túto stránku" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Kopírovať adresu" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Skopírovaná!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Stránka môže byť videná hocikým s jej kompletnou adresou." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Urobiť stránku súkromnou" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Zdieľanie príspevku: súkromné" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Táto stránka je súkromná, iba vy ju môžete vidieť." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Urobiť stránku verejnou" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Nanešťastie %(display_name)s nedočítal/a v %(year)s žiadne knihy" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "To je výborné!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "To robí priemer %(pages)s strán na knihu." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "Ich najkratšie čítanie tohto roku…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "od" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s strán" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "…a najdlhšie" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "Ich najlepšie hodnotená recenzia" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Upraviť autora" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Podrobnosti o autorovi" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Aliasy:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Narodený/á:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Úmrtie:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Externé odkazy" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Wikipédia" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Zobraziť na Wikipédii" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "Webstránka" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Zobraziť ISNI záznam" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "Zobraziť na ISFDB" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Načítať dáta" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "Zobraziť na OpenLibrary" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Zobraziť na Inventaire" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "Zobraziť na LibraryThing" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Zobraziť na Goodreads" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "Knihy od %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Upraviť autora:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Pridaný/á:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Aktualizovaný:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Naposledy upravené od:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Meno:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Oddeľte viacero položiek čiarkami." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Život:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Odkaz na Wikipédiu:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidáta:" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "Webstránka:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Dátum narodenia:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Dátum úmrtia:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Goodreads kľúč:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Uložiť" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Zrušiť" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Potvrdiť" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Upraviť knihu" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Kliknite pre pridanie obalu" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Nepodarilo sa načítať obal" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Kliknite pre zväčšenie" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Pridať popis" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Popis:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s edícia" +msgstr[1] "%(count)s edícií" +msgstr[2] "%(count)s edícií" +msgstr[3] "%(count)s edície" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Túto edíciu ste dali do knihovníčky:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Vaša čitateľská aktivita" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Pridať dátumy čítania" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "Nemáte žiadnu čítaciu činnosť pre túto knihu." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Vaše recenzie" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Vaše komentáre" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Vaše citácie" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Témy" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Miesta" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Zoznamy" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Pridať do zoznamu" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Pridať" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "Kopírovať ISBN" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBN skopírované!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Pridať obálku" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Nahrať obálku:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "Načítať obálku z URL adresy:" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Náhľad obálky knihy" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Zavrieť" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Upraviť \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Pridať knihu" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Potvrdiť informácie o knihe" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "Autor knihy %(book_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "Autor %(alt_title)s" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Nájsť viac informácií na isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Toto je nový autor" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Vytváranie nového autora: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Je toto edícia existujúceho diela?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Toto je nové dielo" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Späť" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Názov:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Podtitulok:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Séria:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Čislo série:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Jazyky:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Tematické okruhy:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Pridať tematický okruh" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Odstrániť tématický okruh" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Pridať ďalší tématický okruh" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Vydanie" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Vydavateľ:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "Dátum prvého vydania:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Dátum vydania:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Autori" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "Odobrať %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "Autorova stránka pre %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Pridať autorov:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Pridať autora" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Pridať ďalšieho autora" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Obal" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Fyzické vlastnosti" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Formát:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Podrobnosti formátu:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Strán:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Identifikátory knihy" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Edície %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "Edície %(work_title)s" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Neviete nájsť edíciu, ktorú hľadáte?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Pridať ďalšiu edíciu" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Jazyk:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Vyhľadávať edície" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Pridať odkaz na súbor" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Typ súboru:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Dostupnosť:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Upraviť odkazy" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Odkazy ku \"%(title)s\"" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Pridal/a" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Typ súboru" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Doména" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Príspevok" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Úkony" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Neznámy užívateľ" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Nahlásiť spam" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Pre túto knihu niesu dostupné žiadne odkazy." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Pridať odkaz na súbor" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Odkazy na súbor" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "Získať kópiu" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Niesu dostupné žiadne odkazy" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "Opúšťate BookWyrm" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Pokračovať" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s strán" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s strán" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s jazyk" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Vydaná %(date)s vydavateľom %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Vydané vydavateľom %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Vydaná %(date)s" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "ohodnotil/a ju" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "Séria od" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "Kniha %(series_number)s" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "Nezaradená kniha" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Upraviť recenziu" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Upraviť citáciu" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Upraviť komentár" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Upraviť príspevok" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Potvrdiť email" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Potvrďte svoju emailovú adresu" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Potvrdzujúci kód:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Odoslať" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Neviete nájsť váš kód?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Znovu odoslať potvrdzovací odkaz" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "Emailová adresa:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Znovu odoslať odkaz" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Komunita" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Miestni užívatelia" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Federovaná komunita" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Adresár" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Urobte váš profil objaviteľný ostatnými užívateľmi BookWyrm." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Pridať sa do adresára" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Zoradiť podľa" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Nedávno aktívni" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Navrhované" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Zamknutý účet" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "kniha na tvojich poličkách" +msgstr[1] "kníh na tvojich poličkách" +msgstr[2] "kníh na tvojich poličkách" +msgstr[3] "knihy na tvojich poličkách" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "príspevky" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "naposledy aktívny/a" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Druh užívateľa" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "BookWyrm užívatelia" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "Všetci známi užívatelia" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "Objavuj" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Zobraziť príspevok" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Potvrdiť email" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Alebo zadajte pri prihlasovaní kód \"%(confirmation_code)s\"." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "Prosím potvrďte svoj email" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Alebo zadajte pri prihlasovaní kód \"%(confirmation_code)s\"." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "Ste pozvaný/á pridať sa k %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Pridajte sa teraz" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "Dozvedieť sa viac o %(site_name)s." + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "Ste pozvaný/á pridať sa k %(site_name)s! Kliknite na odkaz nižšie pre vytvorenie účtu." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "Zistiť viac o %(site_name)s:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "@%(reporter)s označil/a správanie od @%(reportee)s na moderáciu." + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "Zobraziť hlásenie" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Obnoviť heslo" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Pokiaľ ste si nevyžiadali obnoviť vaše heslo, môžete tento email ignorovať." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Obnov svoje heslo %(site_name)s" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "Toto je testovací email." + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "Skúšobný email" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "Domovská stránka %(site_name)s" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Kontaktovať správcu stránky" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "Pridať sa k BookWyrm" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "Súkromné správy s %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "Súkromné správy" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Všetky správy" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Práve teraz nemáš žiadne správy." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Práve teraz tu niesu žiadne činnosti! Pre začiatok skúste nasledovať používateľa" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "Čitateľský cieľ %(year)s" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Môžete nastaviť, alebo zmeniť váš čitateľský cieľ hocikedy zo svojho profilu" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Aktualizácie" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Tvoje knihy" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Teraz tu niesu žiadne knihy! Pre začiatok skúste vyhľadať knihu" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Nahrať svoju čítaciu históriu" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Koho nasledovať" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Neukazovať navrhovaných užívateľov" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Zobraziť adresár" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "Objavte svoje štatistiky z roku %(year)s!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "Čítal/a si %(book_title)s?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Pridaj tvoje knihy" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "Na prečítanie" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Práve čítam" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Dočítané" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Prestal/a som čítať" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Čo čítate?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Vyhľadať knihu" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "Žiadne knihy nenájdené pre \"%(query)s\"" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Keď začnete používať %(site_name)s, môžete pridávať knihy." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Hľadať" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Doporučované knihy" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "Výsledky hľadania" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Populárne na %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Žiadne knihy nenájdené" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Uložiť & pokračovať" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Vitajte" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Toto sú nejaké prvé kroky pre tvoj začiatok." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Vytvorte svoj profil" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Pridať knihy" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Nájsť priateľov" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Preskočiť tento krok" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Dokončiť" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Zobrazované meno:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Zhrnutie:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Trochu o tebe" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Ručne schvaľovať nasledovateľov:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Ukázať tento účet v navrhovaných užívateľoch:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Tvoj účet bude zobrazený v adresári a môže byť doporučený iným BookWyrm užívateľom." + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "Môžeš nasledovať užívateľov na iných BookWyrm instanciách a federovaných službách ako Mastodon." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Hľadať používateľa" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "Žiadni užívatelia nenájdení pod \"%(query)s\"" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "Vytvoriť skupinu" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "Spravovaná %(username)s" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Vymazať túto skupinu?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Tento úkon sa nedá navrátiť" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Vymazať" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Upraviť skupinu" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Názov skupiny:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Popis skupiny:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Vymazať skupinu" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Vytvoriť zoznam" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "Táto skupina nemá zoznamy" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Upraviť skupinu" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "Hľadať pre pridanie užívateľa" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Opustiť skupinu" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "Nasleduje ťa" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "Pridať nových členov!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "Žiadni potencionálni členovia nenájdení pod \"%(user_query)s\"" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Správca" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "Žiadne skupiny nenájdené." + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "Toto je domovská stránka knihy. Pozrime sa, čo môžeš robiť, kým si tu!" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "Stránka knihy" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "Ukončiť prehliadku" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "Ďalej" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "Stav čítania" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "Ostatné edície" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "Zdieľaj svoje myšlienky" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "Zdieľať recenziu" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "S jednoduchým komentárom môžeš zdieľať svoje myšlienky o tejto knihe" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "Zdieľať komentár" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "Zdieľať citáciu" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "Súkromie príspevku" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "Odkazy na stiahnutie" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "Tvoja skupina" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "Nájsť užívateľov" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "Členovia skupiny" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "Zoznamy skupiny" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "Ukončiť prehliadku" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "Doprevádzaná prehliadka" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "Nie, ďakujem" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "Áno prosím!" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "Ak hocikedy zmeníš názor, iba klikni na odkaz Doprevádzaná prehliadka pre začatie tvojej prehliadky" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "Profil a menu nastavení" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "Vytváranie nového zoznamu" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "Ďalej: Skupiny" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "Zobrať ma tam" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "Hľadá sa" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "Načítať viac záznamov" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "Hľadať znova" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "Pridať záznam ručne" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "Pokračovať v prehliadke" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "Vaše knihy" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "Poličky podľa štádia čítania" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "Pridanie vlastných poličiek." + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "Nahrať z inej služby" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "Skupiny" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "Poďme vytvoriť novú skupinu!" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "Vytváranie skupiny" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "Zobrazovanie skupiny" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "Uložiť vašu skupinu" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "Toto je tvoj užívateľský profil. Budú tu zobrazované všetky tvoje posledné činnosti. Ostatní užívatelia Bookwyrm môžu takisto vidieť časti tejto stránky - čo môžu vidieť záleží na tvojich nastaveniach súkromia." + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "Užívateľský profil" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "Čitateľský cieľ" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "Nájsť knihu" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "Ešte pod týmto hashtagom nieje aktivita!" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "Nahrať zoznam kníh" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "Nesprávny CSV súbor" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "Nahrať" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "Dátum vytvorenia" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "Položky" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "Nahrania" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "Prebieha" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "Obnoviť" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "Zastaviť nahrávanie" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "Názov" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "Autor" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "Knihovníčka" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "Kniha" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "Zobraziť nahranú recenziu" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "Nahrané" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "Potrebuje ručne skontrolovať" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "Skúsiť znova" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "Nahrať BookWyrm účet" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "Nesprávny súbor na nahratie" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "Krok 1:" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "Krok 2:" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "Profil užívateľa" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "Nastavenia užívateľa" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "Tvoja časová zóna" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "Tvoje východzie nastavenie súkromia príspevkov" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "Nasledovatelia a nasledovania" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "Užívateľské blokovania" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "Čitateľské ciele" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "Schváliť" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "Nahrávanie používateľov" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Celkom" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Príspevky" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Decentralizovaný" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "Priateľský" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "Protikorporátny" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "Pridať sa na %(name)s" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "Vyžiadať pozvanie" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "Pre %(name)s je registrácia zatvorená" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "Ďakujeme! Vaša požiadavka bola obdržaná." + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "Váš účet" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "Prihlásenie" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "Prihlásenie" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "Úspech! Emailová adresa potvrdená." + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Užívateľské meno:" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "Heslo:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "Zabudli ste svoje heslo?" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "Viac o tejto stránke" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "Potvrdiť heslo:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "Odkaz na obnovenie vášho hesla bol odoslaný na vašu emailovú adresu" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "Obnoviť heslo" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "Pridať sa" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "Príspevok úspešne odoslaný" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "Chyba pri odosielaní príspevku" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +msgid "Notes:" +msgstr "Poznámky:" + +#: 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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "Vymazať účet" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "Profil" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "Zobrazenie" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Väčšina užívateľských nastavení" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "Dokončiť \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "Začať \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "Prestať čítať \"%(book_title)s\"" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "Začal/a som čítať" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "Postup" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "Skončil/a som čítanie" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "skončené" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "zastavené" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "Užívatelia" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "Oznámenie" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "Upraviť" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "Oznámenia" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "Viditeľný/á:" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "Počiatočný dátum:" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "Konečný dátum:" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "Aktívne:" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "Vytvoriť oznam" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "Dátum pridania" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "Náhľad" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "Počiatočný dátum" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "Konečný dátum" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "aktívne" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "neaktívne" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "Žiadne oznámenia nenájdené" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "Upraviť oznámenie" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "Obsah oznámenia" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "Podrobnosti:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "Dátum udalosti:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "Nastavenia zobrazenia" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "Farba:" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "Naplánované:" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "Poslednýkrát bežalo:" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "Celkový počet spustení:" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "Povolené:" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "Vymazať naplánovanie" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "Spustiť teraz" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "Pravidlo úspešne pridané" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "Pridať pravidlo" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "Pridať pravidlo" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "Zobraziť pravidlá" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "Odstrániť pravidlá" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "Názov úlohy" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "Priorita" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "Žiadne aktívne úlohy" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "Nemožno sa pripojiť k Celery" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "Chyby" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Federované instancie" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "Užívateľov celkom" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "Aktívni tento mesiac" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "Aktivita instancie" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "Dni" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "Týždne" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "Aktivita príspevkov" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "Vytvorených diel" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "Registrácie" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "Odoslaných príspevkov" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "Pridať doménu" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "Doména:" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "Nastavenie emailu" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "Chyba odosielania skúšobného emailu:" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "Odosielateľ emailu:" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "Poslať skúšobný email" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "Pridať instanciu" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Nahrať zoznam blokovaní" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instancia:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "Softvér:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "Verzia:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "Názov instancie" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "Poslednýkrát aktualizovaná" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "Softvér" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "Nenájdené žiadne instancie" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Hotovo" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "Zastaviť nahrávanie?" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "Nastaviť obmedzenie nahrávania na" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "kníh každých" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "dní." + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "Nastaviť obmedzenie" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "Vymedziť ako často môžu užívatelia importovať a exportovať" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "Vymedziť ako často môžu užívatelia importovať a exportovať užívateľské dáta" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "hodín" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "Zmeniť vymedzenie" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "Nahrávanie kníh" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "Užívateľ" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "Dátum aktualizácie" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "Čakajúce položky" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "Požiadavky o pozvanie" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "Pozvánky" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "Dátum požiadavky" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "Dátum schválenia" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "Odpoveď" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "Úkon" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "Spravovanie" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "Spravovať užívateľov" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "Nahlásenia" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "Systém" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "Nastavenia instancie" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "Nastavenia stránky" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "Registrácia" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "Motívy" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "Nastaviť zobrazované meno pre %(url)s" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "Nastaviť zobrazované meno" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "Zobraziť odkazy" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "Nastavenia uložené" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "Nemožno nastavenia uložiť" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "Povoliť registráciu" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "Východzia miera prístupu:" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "Vyžadovať od užívateľov, aby potvrdili emailovú adresu" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "(Odporúča sa, pokiaľ je registrácia otvorená)" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "Povoliť požiadavky o pozvanie" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "Text pri zatvorenej registrácii:" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "Späť k hláseniam" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "Schváliť doménu" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "Blokovať doménu" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "Názov instancie:" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "Popis instancie:" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "Krátky popis:" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "Pravidlá súkromia:" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "Východzí vzhľad:" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "Nastaviť východzí vzhľad instancie" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "Pridať vzhľad" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "Nepodarilo sa vzhľad uložiť" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "Názov vzhľadu" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "Dostupné vzhľady" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "Súbor" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "Odstrániť vzhľad" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "Natrvalo vymazať užívateľa" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "Vaše heslo:" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "Užívatelia: %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "Vymazaní užívatelia" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "Užívateľské meno" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "Dátum pridania" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "Poslednýkrát aktívny" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "Vzdialená instancia" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "Nezadané" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "Zobraziť užívateľov profil" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "Ísť na spravovanie užívateľov" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "Miestny" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "Vzdialený" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "Podrobnosti užívateľa" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "Dátum pridania:" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "Dátum poslednej činnosti:" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "Objaviteľný:" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "Podrobnosti instancie" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "Zobraziť instanciu" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "Natrvalo vymazané" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "Uživateľové činnosti" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "Aktivovať užívateľa" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "Vylúčiť užívateľa" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "Zrušiť vylúčenie užívateľa" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "Úroveň prístupu:" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "Nastavenia" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "Čitateľský cieľ:" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "Zverejniť na kanáli" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s postup v čítaní" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + diff --git a/locale/sl_SI/LC_MESSAGES/django.mo b/locale/sl_SI/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..7e8a0c6606 Binary files /dev/null and b/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/locale/sl_SI/LC_MESSAGES/django.po b/locale/sl_SI/LC_MESSAGES/django.po new file mode 100644 index 0000000000..45eceb6ba3 --- /dev/null +++ b/locale/sl_SI/LC_MESSAGES/django.po @@ -0,0 +1,7829 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Slovenian\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: sl\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "En dan" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "En teden" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "En mesec" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Ne poteče" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Neomejeno" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Nepravilno geslo" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Gesli se ne ujemata" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Nepravilno geslo" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Končni datum branja ne more biti pred začetnim datumom." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Datum ustavitve branja ne more biti pred začetnim datumom." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Datum ustavitve branja ne more biti v prihodnosti." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Datum zaključka branja ne more biti v prihodnosti." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Uporabniško ime in geslo nista pravilna" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Uporabnik s tem uporabniškim imenom že obstaja" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Uporabnik s to e-pošto že obstaja." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Nepravilna koda" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Ta domena je blokirana. Če menite, da gre za napako, se prosim obrnite na administratorja." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Ta povezava z vrsto datoteke je že dodana za to knjigo. Če ni vidna, je domena še vedno v čakanju." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Vrstni red" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Naslov knjige" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Ocena" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Razvrsti po" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Naraščajoče" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Padajoče" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Osnovni" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Postopek uspešen" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Povezava" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Opozorilo" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Nevarno" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Samodejno ustvarjeno poročilo" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "V čakanju" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Samoizbris" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "Samoaktivacija" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Moderatorjeva prekinitev" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Moderatorjev izbris" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Blokirana domena" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Zvočna knjiga" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "e-knjiga" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Risoroman" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Trda vezava" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Mehka vezava" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Komentar" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Federirano" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Blokirano" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s ni veljaven remote_id" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s ni veljavno uporabniško ime" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "uporabniško ime" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Uporabnik s tem uporabniškim imenom že obstaja." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Javno" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Ni na seznamu" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Sledilci" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Zasebno" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "Aktivno" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Končano" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Ustavljeno" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Vnos ustavljen" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Napaka pri vnosu knjige" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Brezplačno" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Na voljo za nakup" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Na voljo za izposojo" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Odobreno" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Recenzije" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Komentarji" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Citati" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Vse ostalo" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Domača časovnica" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Domov" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Knjižna časovnica" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Knjige" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "angleški (English)" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "katalonski (Catalan)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "nemški (German)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "španski (Spanish)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "galicijski (Galician)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "italijanski (Italian)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "finski (Finnish)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "francoski (French)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "litovski (Lithuanian)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "norveški (Norwegian)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "polski (Polish)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "portugalski, brazilski (Brazilian Portuguese)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "portugalski, evropski (European Portuguese)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "romunski (Romanian)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "švedski (Swedish)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "kitajski, poenostavljen (Simplified Chinese)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "kitajski, tradicionalen (Traditional Chinese)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Ni najdeno" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Stran, ki jo iščete, ne obstaja!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Napaka!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Napaka strežnika" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Nekaj je bilo narobe, se opravičujem." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "O" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Dobrodošli na %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Moderator" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Administrator" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Pošlji neposredno sporočilo" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Kodeks ravnanja" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "Kolofon" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Št. uporabnikov:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Verzija programske opreme:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "O %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s v knjigah" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s v knjigah" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "Vse knjige %(display_name)s, prebrane leta %(year)s" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Psevdonimi:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Wikipedija" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "Poglej ISNI zapis" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Biografija:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Datum rojstva:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Datum smrti:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "Neveljavna CSV datoteka" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + diff --git a/locale/sr_SP/LC_MESSAGES/django.mo b/locale/sr_SP/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..dd169ae0f1 Binary files /dev/null and b/locale/sr_SP/LC_MESSAGES/django.mo differ diff --git a/locale/sr_SP/LC_MESSAGES/django.po b/locale/sr_SP/LC_MESSAGES/django.po new file mode 100644 index 0000000000..aea2e82153 --- /dev/null +++ b/locale/sr_SP/LC_MESSAGES/django.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Serbian (Cyrillic)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: sr\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Један дан" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo index bc359e38b5..c31fdfed9a 100644 Binary files a/locale/sv_SE/LC_MESSAGES/django.mo and b/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/locale/sv_SE/LC_MESSAGES/django.po b/locale/sv_SE/LC_MESSAGES/django.po index 2d6a729eda..d918982994 100644 --- a/locale/sv_SE/LC_MESSAGES/django.po +++ b/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-20 22:28\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-10 21:22\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Swedish\n" "Language: sv\n" @@ -33,56 +33,55 @@ msgstr "En månad" msgid "Does Not Expire" msgstr "Slutar inte gälla" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} använder" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Obegränsad" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Felaktigt lösenord" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Lösenord matchar inte" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Felaktigt lösenord" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Slutdatum för läsning kan inte vara före startdatum." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Stoppdatum för läsning kan inte vara före startdatum." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Stoppdatum för läsning kan inte vara i framtiden." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Slutdatum för läsning kan inte vara i framtiden." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Användarnamnet eller lösenordet är felaktigt" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "En användare med det användarnamnet finns redan" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "En användare med den här e-postadressen finns redan." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Felaktig kod" @@ -90,7 +89,7 @@ msgstr "Felaktig kod" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Den här domänen är blockerad. Vänligen kontakta din administratör om du tror att det här är felaktigt." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Denna länk med filtyp har redan lagts till för denna bok. Om den inte är synlig så är domänen fortfarande väntande." @@ -102,8 +101,8 @@ msgstr "Listordning" msgid "Book Title" msgstr "Bokens titel" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Recension" @@ -145,8 +144,8 @@ msgstr "Fara" msgid "Automatically generated report" msgstr "Automatiskt genererad rapport" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Borttagning av moderator" msgid "Domain block" msgstr "Domänblockering" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Ljudbok" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "E-bok" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Grafisk novell" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Inbunden" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "Pocketbok" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Kommentar" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recension" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Följ" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blockera" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "invalid_relationship" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federerad" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s är inte ett giltigt remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s är inte ett giltigt användarnamn" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "användarnamn" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "En användare med det användarnamnet finns redan." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "En användare med det användarnamnet finns redan." msgid "Public" msgstr "Publik" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Publik" msgid "Unlisted" msgstr "Ej listad" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Ej listad" msgid "Followers" msgstr "Följare" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,233 +326,268 @@ msgstr "Följare" msgid "Private" msgstr "Privat" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "Aktiv" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Slutförd" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Avbruten" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Import avbröts" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Fel uppstod vid inläsning av boken" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Kunde inte hitta en träff för boken" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" -msgstr "" +msgstr "Misslyckades" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Gratis" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Kan köpas" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Tillgänglig för lån" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Godkänd" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Kommentar" - #: bookwyrm/models/report.py:85 msgid "Resolved report" -msgstr "" +msgstr "Löste rapporten" #: bookwyrm/models/report.py:86 msgid "Re-opened report" -msgstr "" +msgstr "Öppnade rapporten igen" #: bookwyrm/models/report.py:87 msgid "Messaged reporter" -msgstr "" +msgstr "Skickade ett meddelande till rapportören" #: bookwyrm/models/report.py:88 msgid "Messaged reported user" -msgstr "" +msgstr "Skickade ett meddelande till den rapporterade användaren" #: bookwyrm/models/report.py:89 msgid "Suspended user" -msgstr "" +msgstr "Stängde av användaren" #: bookwyrm/models/report.py:90 msgid "Un-suspended user" -msgstr "" +msgstr "Tog bort avstängningen för användaren" #: bookwyrm/models/report.py:91 msgid "Changed user permission level" -msgstr "" +msgstr "Ändrade användarbehörighetsnivå" #: bookwyrm/models/report.py:92 msgid "Deleted user account" -msgstr "" +msgstr "Tog bort användarkontot" #: bookwyrm/models/report.py:93 msgid "Blocked domain" -msgstr "" +msgstr "Blockerade domänen" #: bookwyrm/models/report.py:94 msgid "Approved domain" -msgstr "" +msgstr "Tog bort blockeringen av domänen" #: bookwyrm/models/report.py:95 msgid "Deleted item" -msgstr "" +msgstr "Tog bort objekt" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "Okänd" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "%(display_name)ss status" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)ss kommentar på %(book_title)s" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)ss citat från %(book_title)s" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)ss recension av %(book_title)s" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s betygsatte %(book_title)s: %(display_rating).1f stjärna" +msgstr[1] "%(display_name)s betygsatte %(book_title)s: %(display_rating).1f stjärnor" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Recensioner" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Kommentarer" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Citat" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Allt annat" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Tidslinje för Hem" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Hem" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Tidslinjer för böcker" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Böcker" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "Engelska" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (katalanska)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Tyska (Tysk)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Esperanto)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Spanska (Spansk)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Baskiska)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Gallisk)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italienska (Italiensk)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (koreanska)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Finland (Finska)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Franska (Fransk)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Litauiska (Litauisk)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" -msgstr "" +msgstr "Nederländerna (Holländska)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norska (Norska)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (polska)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português d Brasil (Brasiliansk Portugisiska)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeisk Portugisiska)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Rumänien (Rumänska)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Svenska)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" -msgstr "" +msgstr "Українська (ukrainska)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Förenklad Kinesiska)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Traditionell Kinesiska)" #: bookwyrm/templates/403.html:5 msgid "Oh no!" -msgstr "" +msgstr "Åh nej!" #: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 msgid "Permission Denied" @@ -510,16 +612,14 @@ msgstr "Sidan som du efterfrågade verkar inte existera!" #: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 msgid "File too large" -msgstr "" +msgstr "Filen för stor" #: bookwyrm/templates/413.html:9 msgid "The file you are uploading is too large." -msgstr "" +msgstr "Filen som du försöker ladda upp är för stor." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." msgstr "" #: bookwyrm/templates/500.html:4 @@ -553,7 +653,7 @@ msgstr "%(site_name)s är en del av BookWyrm, ett nätverk av oberoende #: bookwyrm/templates/about/about.html:45 #, python-format msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." -msgstr "%(title)s är %(site_name)s's mest omtyckta bok med ett genomsnittligt betyg på %(rating)s av 5." +msgstr "%(title)s är %(site_name)ss mest omtyckta bok med ett genomsnittligt betyg på %(rating)s av 5." #: bookwyrm/templates/about/about.html:64 #, python-format @@ -576,7 +676,7 @@ msgstr "Träffa dina administratörer" #: bookwyrm/templates/about/about.html:108 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "%(site_name)s's moderatorer och administratörer håller hemsidan uppe och fungerande, upprätthåller uppförandekoden och svarar när användarna rapporterar skräppost och dåligt uppförande." +msgstr "%(site_name)ss moderatorer och administratörer håller hemsidan uppe och fungerande, upprätthåller uppförandekoden och svarar när användarna rapporterar skräppost och dåligt uppförande." #: bookwyrm/templates/about/about.html:122 msgid "Moderator" @@ -616,7 +716,7 @@ msgid "Statuses posted:" msgstr "Utlagda statusar:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Programvaruversion:" @@ -648,7 +748,7 @@ msgstr "%(year)s i böcker" #: bookwyrm/templates/annual_summary/layout.html:47 #, python-format msgid "%(display_name)s’s year of reading" -msgstr "%(display_name)s's läsår" +msgstr "%(display_name)ss läsår" #: bookwyrm/templates/annual_summary/layout.html:53 msgid "Share this page" @@ -726,7 +826,7 @@ msgstr "Det kortast lästa det här året…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -806,44 +906,48 @@ msgid "Wikipedia" msgstr "Wikipedia" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Webbplats" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Visa ISNI-samling" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Visa på ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Ladda data" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Visa i OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Visa i Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Visa i LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Visa i Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Böcker av %(name)s" @@ -880,8 +984,8 @@ msgid "Name:" msgstr "Namn:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Separera flera värden med kommatecken." @@ -893,50 +997,54 @@ msgstr "Bio:" msgid "Wikipedia link:" msgstr "Wikipedia-länk:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Wikidata:" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Webbplats:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Födelsedatum:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Dödsdatum:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Identifierare för författare" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Nyckel för Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventarie-ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything-nyckel:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads-nyckel:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -944,7 +1052,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -958,14 +1066,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Spara" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -975,6 +1083,7 @@ msgstr "Spara" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -992,100 +1101,104 @@ msgstr "Att ladda in data kommer att ansluta till %(source_name)sdifferent edition of this book is on your %(shelf_name)s shelf." msgstr "En annorlunda utgåva av den här boken finns i din %(shelf_name)s hylla." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Din läsningsaktivitet" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Lägg till läsdatum" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Du har ingen läsaktivitet för den här boken." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Dina recensioner" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Dina kommentarer" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Dina citat" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Ämnen" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Platser" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1093,18 +1206,18 @@ msgstr "Platser" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Listor" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Lägg till i listan" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1120,47 +1233,57 @@ msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:12 #: bookwyrm/templates/book/book_identifiers.html:13 msgid "Copy ISBN" -msgstr "" +msgstr "Kopiera ISBN" #: bookwyrm/templates/book/book_identifiers.html:16 msgid "Copied ISBN!" -msgstr "" +msgstr "Kopierade ISBN!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC-nummer:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible-ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB-ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Lägg till omslag" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Ladda upp omslag:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "" @@ -1234,7 +1357,7 @@ msgid "This is a new work" msgstr "Det här är ett nytt verk" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1287,125 +1410,129 @@ msgstr "Bakåt" msgid "Title:" msgstr "Titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" -msgstr "" +msgstr "Sortera titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Undertitel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Serienummer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Språk:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Ämnen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Lägg till ämne" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Ta bort ämne" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Lägg till ett annat ämne" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Publikation" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Utgivare:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Första publiceringsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Publiceringsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Författare" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Ta bort %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Författarsida för %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Lägg till författare:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Lägg till författare" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Jane Doe" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Lägg till en annan författare" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Omslag" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Fysiska egenskaper" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Formatets detaljer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Sidor:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Bok-identifierare" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary-ID:" @@ -1433,7 +1560,7 @@ msgid "Any" msgstr "Alla" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Språk:" @@ -1494,12 +1621,15 @@ msgid "Domain" msgstr "Domän" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1511,8 +1641,8 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1558,8 +1688,8 @@ msgstr "Lämnar BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Den här länken tar dig till: %(link_url)s.
    Är det dit du vill?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Fortsätt" @@ -1615,7 +1745,19 @@ msgstr "Osorterad bok" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Den laddade datan kommer att ansluta till %(source_name)s och söka efter eventuell metadata om den här boken som för närvarande inte finns här. Befintlig metadata kommer inte att skrivas över." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Redigera kommentar" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Redigera status" @@ -1642,7 +1784,7 @@ msgstr "Bekräftelsekod:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Skicka in" @@ -1724,12 +1866,12 @@ msgstr "Föreslagna" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1850,8 +1992,8 @@ msgstr "Hej där," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm körs på%(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1869,8 +2011,8 @@ msgstr "Gå med nu" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Lär dig mer om %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2046,19 +2188,19 @@ msgid "Add to your books" msgstr "Lägg till i dina böcker" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "Att läsa" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Läser just nu" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2067,7 +2209,7 @@ msgid "Read" msgstr "Lästa" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Slutade läsa" @@ -2100,7 +2242,7 @@ msgstr "Du kan lägga till böcker när du börjar använda %(site_name)s." #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Sök" @@ -2752,6 +2894,7 @@ msgstr "Du kan skapa eller gå med i en grupp med andra användare. Grupper kan #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Grupper" @@ -2866,11 +3009,13 @@ msgid "You have %(display_left)s left." msgstr "Du har %(display_left)s kvar." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "De senaste importerna har i genomsnitt tagit %(hours)s timmar." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "De senaste importerna har i genomsnitt tagit %(minutes)s minuter." @@ -2896,69 +3041,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "OpenReads (CSV)" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "BookWyrm (CSV)" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Du kan ladda ner din Goodreads-data från Import/Export-sidan för ditt Goodreads-konto." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Datafil:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Inkludera recensioner" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Integritetsinställning för importerade recensioner:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Importera" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Du har nått importeringsgränsen." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Importer är tillfälligt inaktiverade, tack för ditt tålamod." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Senaste importer" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Skapad" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Senast uppdaterad" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Föremål" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Ingen importering nyligen" @@ -2982,20 +3139,24 @@ msgid "Imports" msgstr "Importer" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Importeringen startade:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Pågår" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Uppdatera" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Avsluta import" @@ -3012,6 +3173,7 @@ msgid "Review items" msgstr "Granska objekt" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3019,6 +3181,7 @@ msgstr[0] "%(display_counter)s objekt kunde inte importeras." msgstr[1] "%(display_counter)s objekt kunde inte importeras." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Visa och felsök misslyckade objekt" @@ -3027,12 +3190,14 @@ msgid "Row" msgstr "Rad" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Titel" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3041,8 +3206,8 @@ msgid "Openlibrary key" msgstr "Openlibrary-nyckel" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Författare" @@ -3050,13 +3215,9 @@ msgstr "Författare" msgid "Shelf" msgstr "Hylla" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Recension" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Bok" @@ -3074,6 +3235,8 @@ msgid "View imported review" msgstr "Visa importerad recension" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Importerade" @@ -3101,7 +3264,7 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:13 msgid "Not a valid import file" -msgstr "" +msgstr "Inte en giltig importfil" #: bookwyrm/templates/import/import_user.html:18 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." @@ -3109,116 +3272,121 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "Steg 1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "Steg 2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Användarprofil" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" -msgstr "" +msgstr "Användarinställningar" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "Din tidszon" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" -msgstr "" +msgstr "Följare och följer" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" -msgstr "" +msgstr "Hyllor" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" -msgstr "" +msgstr "Boklistor" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" -msgstr "" +msgstr "Sparade listor" #: bookwyrm/templates/import/manual_review.html:5 #: bookwyrm/templates/import/troubleshoot.html:4 @@ -3240,15 +3408,18 @@ msgid "Reject" msgstr "Neka" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Misslyckade objekt" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Felsökning" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Att prova en importering igen kan lösa objekt som saknades så som:" @@ -3257,21 +3428,96 @@ msgid "The book has been added to the instance since this import" msgstr "Den här boken har lagts till i instansen sedan den här importeringen" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Ett tillfälligt fel eller timeout orsakade att den externa datakällan inte var tillgänglig." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "BookWyrm har blivit uppdaterad sedan den här importen med en fel-lösning" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Kontakta din administratör eller öppna ett problem om du ser oväntade misslyckade objekt." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Totalt" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statusar" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "Importerade böcker" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "Förhållande" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "Orsak" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Skapa ett konto" @@ -3322,7 +3568,7 @@ msgid "Login" msgstr "Inloggning" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Logga in" @@ -3338,22 +3584,22 @@ msgstr "Lyckades! E-postadressen bekräftades." msgid "Username:" msgstr "Användarnamn:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Lösenord:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Glömt ditt lösenord?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Mer om den här sidan" @@ -3381,7 +3627,7 @@ msgstr "Återställ lösenordet" msgid "Reactivate Account" msgstr "Återaktivera konto" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Återaktivera konto" @@ -3391,8 +3637,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s sök" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Sök efter en bok, användare eller lista" +msgid "Search for a book, author, user, or list" +msgstr "Sök efter en bok, författare, användare eller lista" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3408,7 +3654,7 @@ msgstr "lösenord" #: bookwyrm/templates/layout.html:136 msgid "Show/Hide password" -msgstr "" +msgstr "Visa/dölj lösenord" #: bookwyrm/templates/layout.html:150 msgid "Join" @@ -3605,6 +3851,8 @@ msgid "List position" msgstr "Listans plats" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Ställ in" @@ -3689,7 +3937,7 @@ msgstr "" #: bookwyrm/templates/moved.html:42 msgid "Undo move" -msgstr "" +msgstr "Ångra flytta" #: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 msgid "Log out" @@ -3929,7 +4177,7 @@ msgstr "%(related_user)s och %(other_user_ #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "En ny länkdomän behöver granskas" msgstr[1] "%(display_count)s nya länkdomäner behöver moderering" @@ -4100,21 +4348,21 @@ msgstr "Du följer redan %(account)s" msgid "You have already requested to follow %(account)s" msgstr "Du har redan begärt att följa %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "Följ %(username)s på fediversen" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "Följ %(username)s från ett annat Fediverse-konto så som BookWyrm, Mastodon eller Pleroma." -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "Användarnamn att följa från:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "Följ!" @@ -4155,91 +4403,23 @@ msgstr "Låt oss logga in först..." msgid "Follow %(username)s" msgstr "Följ %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "Du följer nu %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "Tvåfaktorsautentisering" - -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "Uppdaterade 2FA-inställningarna framgångsrikt" - -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "Skriv ner eller kopiera och klistra in dessa koder någonstans säkert." - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "Du måste använda dem i ordning, och de kommer inte att visas igen." - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "Tvåfaktorsautentisering är aktivt för ditt konto." - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "Inaktivera 2FA" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "Generera säkerhetskopieringskoder" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "Skanna QR-koden med din autentiseringsapp och ange sedan koden från din app nedan för att bekräfta att din app är konfigurerad." - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "Använd installationsnyckel" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "Namn på konto:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "Kod:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "Fyll i koden från din app:" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "Bekräfta ditt lösenord för att påbörja inställningen av 2FA." - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "Ställ in 2FA" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Flytta konto" #: bookwyrm/templates/preferences/alias_user.html:7 #: bookwyrm/templates/preferences/alias_user.html:34 msgid "Create Alias" -msgstr "" +msgstr "Skapa alias" #: bookwyrm/templates/preferences/alias_user.html:12 msgid "Add another account as an alias" @@ -4265,11 +4445,11 @@ msgstr "Bekräfta ditt lösenord:" #: bookwyrm/templates/preferences/alias_user.html:39 #: bookwyrm/templates/preferences/layout.html:28 msgid "Aliases" -msgstr "" +msgstr "Alias" #: bookwyrm/templates/preferences/alias_user.html:49 msgid "Remove alias" -msgstr "" +msgstr "Ta bort alias" #: bookwyrm/templates/preferences/blocks.html:4 #: bookwyrm/templates/preferences/blocks.html:7 @@ -4328,6 +4508,12 @@ msgstr "Ta bort kontot permanent" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "Borttagning av ditt konto kan inte ångras. Användarnamnet kommer inte att vara tillgängligt att registrera i framtiden." +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "Inaktivera 2FA" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "Inaktivera Tvåfaktorsautentisering" @@ -4357,12 +4543,12 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "Visa" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "Integritet" @@ -4371,94 +4557,158 @@ msgid "Show reading goal prompt in feed" msgstr "Visa uppmaning om läsmål i flödet" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "Visa föreslagna användare" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "Visa det här kontot i föreslagna användare" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Ditt konto kommer att dyka upp i mappen och kan komma att rekommenderas till andra BookWyrm-användare." -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "Föredragen tidszon: " -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "Tema:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "Godkänn följare manuellt" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Göm följare och följningar på profilen" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "Standardsekretess för inlägg:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" -msgstr "" +msgstr "Exportera BookWyrm-konto" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Din fil kommer inkludera:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "Direktmeddelanden" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "Svar på dina statusar" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "Favoriter" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "Datum" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "Storlek" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4477,6 +4727,10 @@ msgstr "Ladda ner fil" msgid "Account" msgstr "Konto" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "Säkerhetsinställningar" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4512,6 +4766,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "Tvåfaktorsautentisering" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "Uppdaterade 2FA-inställningarna framgångsrikt" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "Skriv ner eller kopiera och klistra in dessa koder någonstans säkert." + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "Du måste använda dem i ordning, och de kommer inte att visas igen." + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "Tvåfaktorsautentisering är aktivt för ditt konto." + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Generera säkerhetskopieringskoder" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "Skanna QR-koden med din autentiseringsapp och ange sedan koden från din app nedan för att bekräfta att din app är konfigurerad." + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "Använd installationsnyckel" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "Namn på konto:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "Kod:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Fyll i koden från din app:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "Bekräfta ditt lösenord för att påbörja inställningen av 2FA." + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "Ställ in 2FA" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "IP-adress" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "IP" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "OS" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "Webbläsare" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "Du" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4557,6 +4929,7 @@ msgstr "Började läsa" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "Förlopp" @@ -4687,8 +5060,8 @@ msgstr "Sökfråga" msgid "Search type" msgstr "Typ av sökning" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4698,12 +5071,12 @@ msgstr "Typ av sökning" msgid "Users" msgstr "Användare" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "Inga resultat hittades för \"%(query)s\"" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4725,7 +5098,7 @@ msgstr "Redigera" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "Tillkännagivanden" @@ -4743,13 +5116,13 @@ msgstr "Falskt" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "Startdatum:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "Slutdatum:" @@ -4818,7 +5191,6 @@ msgstr "Färg:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "Automatiska modereringsregler" @@ -4831,35 +5203,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "Användare eller inlägg som redan blivit anmälda (oavsett anmälningens status) blir inte flaggade." #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "Schema:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "Kördes senast:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "Totalt antal körningar:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Aktiverad:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "Ta bort schema" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "Kör nu" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "Senaste körningsdatum kommer inte att bli uppdaterat" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "Schemalägg skanning" @@ -4904,6 +5284,7 @@ msgstr "Ta bort regel" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Lönestatus" @@ -4932,6 +5313,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -4942,7 +5324,7 @@ msgstr "Bilder" #: bookwyrm/templates/settings/celery.html:70 msgid "Suggested Users" -msgstr "" +msgstr "Föreslagna användare" #: bookwyrm/templates/settings/celery.html:83 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 @@ -4975,8 +5357,9 @@ msgid "Active Tasks" msgstr "Aktiva uppgifter" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4989,6 +5372,8 @@ msgid "Run time" msgstr "Körtid" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Prioritet" @@ -5021,6 +5406,66 @@ msgstr "" msgid "Errors" msgstr "Fel" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Orsak till inaktivering:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "Inaktivera" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Federerade instanser" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Uppdatera" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5028,7 +5473,7 @@ msgid "Dashboard" msgstr "Översiktspanel" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Totalt antal användare" @@ -5037,40 +5482,36 @@ msgstr "Totalt antal användare" msgid "Active this month" msgstr "Aktiva den här månaden" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Statusar" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Verk" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Instansaktivitet" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Intervall:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Dagar" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Veckor" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Användarens registreringsaktivitet" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Statusaktivitet" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Skapade verk" @@ -5082,9 +5523,13 @@ msgstr "Registreringar" msgid "Statuses posted" msgstr "Utlagda statusar" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Totalt" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5166,7 +5611,7 @@ msgstr "Inga e-postdomäner är för närvarande blockerade" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "E-postkonfiguration" @@ -5179,7 +5624,7 @@ msgid "Successfully sent test email." msgstr "Testmeddelandet skickades framgångsrikt." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "E-postavsändare:" @@ -5227,15 +5672,6 @@ msgstr "Skicka testmeddelande" msgid "Add instance" msgstr "Lägg till instans" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Federerade instanser" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5311,12 +5747,6 @@ msgstr "Anteckningar" msgid "No notes" msgstr "Inga anteckningar" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blockera" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Alla användare från den här instansen kommer att bli inaktiverade." @@ -5369,6 +5799,49 @@ msgstr "Mjukvara" msgid "No instances found" msgstr "Inga instanser hittades" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Slutförd" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5415,7 +5888,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "En del användare kan försöka importera ett stort antal böcker som du kan vilja begränsa." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Sätt värdet till 0 för att inte påtvinga någon gräns." @@ -5435,62 +5908,81 @@ msgstr "dagar." msgid "Set limit" msgstr "Ställ in gränsen" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "timmar" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Slutförd" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Användare" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Uppdaterad" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "Väntande objekt" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Framgångsrika objekt" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Inga matchande importer hittades." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5654,6 +6146,10 @@ msgstr "Moderering" msgid "Reports" msgstr "Rapporter" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5664,22 +6160,26 @@ msgstr "Länka domäner" msgid "System" msgstr "System" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Celery-status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "Schemalagda uppgifter" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Inställningar för instans" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Inställningar för sidan" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5687,7 +6187,7 @@ msgstr "Inställningar för sidan" msgid "Registration" msgstr "Registrering" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5848,7 +6348,7 @@ msgstr "Rapport #%(report_id)s: Användare @%(username)s" #: bookwyrm/templates/settings/reports/report_links_table.html:19 msgid "Approve domain" -msgstr "" +msgstr "Godkänn domän" #: bookwyrm/templates/settings/reports/report_links_table.html:26 msgid "Block domain" @@ -5893,6 +6393,61 @@ msgstr "Lösta" msgid "No reports found." msgstr "Inga rapporter hittades." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "Schemalagda uppgifter" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "Uppgifter" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "Namn" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "Schema-ID" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "Inga schemalagda uppgifter" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "Scheman" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "Inga scheman hittades" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6031,7 +6586,7 @@ msgstr "Ta bort tema" #: bookwyrm/templates/settings/themes.html:134 msgid "Test theme" -msgstr "" +msgstr "Testa tema" #: bookwyrm/templates/settings/themes.html:143 msgid "Broken theme" @@ -6138,10 +6693,6 @@ msgstr "Manuellt godkända följare:" msgid "Discoverable:" msgstr "Upptäckbar:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Orsak till inaktivering:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Instansens detaljer" @@ -6235,8 +6786,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Din domän verkar vara felkonfigurerad. Den bör inte inkludera protokoll eller snedstreck." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Du kör BookWyrm i produktionsläge utan https. USE_HTTPS bör aktiveras i konfigureringen." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6246,39 +6797,39 @@ msgstr "Inställningar" msgid "Instance domain:" msgstr "Domän för instansen:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Protokoll:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Användning av S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Standardspråk för gränssnittet:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Aktivera förhandsgranskning av bilder:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Aktivera bildminiatyrer:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Ser allt rätt ut?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Detta är din sista chans att ställa in din domän och protokoll." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Du kan ändra dina instansinställningar i filen .env på din server." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Visa installationsanvisningar" @@ -6295,7 +6846,7 @@ msgid "Need help?" msgstr "Behöver du hjälp?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Skapa hylla" @@ -6303,59 +6854,72 @@ msgstr "Skapa hylla" msgid "Edit Shelf" msgstr "Redigera hylla" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Alla böcker" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Importera böcker" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s bok" msgstr[1] "%(formatted_count)s böcker" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(visar %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Redigera hylla" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Ta bort hylla" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Lagd på hyllan" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Påbörjade" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Avslutade" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "Till" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Den här hyllan är tom." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "Skriv text här" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Bjud in" @@ -6457,10 +7021,6 @@ msgstr "Varning för spoiler!" msgid "Comment:" msgstr "Kommentar:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Uppdatera" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Inlägg" @@ -6486,7 +7046,7 @@ msgstr "På sidan:" msgid "At percent:" msgstr "Vid procent:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "till" @@ -6531,10 +7091,6 @@ msgstr "Verkställ filtren" msgid "Follow @%(username)s" msgstr "Följ @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Följ" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Ångra följdförfrågning" @@ -6564,10 +7120,10 @@ msgstr "" #: bookwyrm/templates/snippets/footer.html:49 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." -msgstr "BookWyrm's källkod är fritt tillgänglig. Du kan bidra eller rapportera fel på GitHub." +msgstr "BookWyrms källkod är fritt tillgänglig. Du kan bidra eller rapportera fel på GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Inget betyg" @@ -6579,7 +7135,7 @@ msgstr[0] "%(half_rating)s stjärna" msgstr[1] "%(half_rating)s stjärnor" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6747,7 +7303,7 @@ msgstr "Registrera" #: bookwyrm/templates/snippets/report_modal.html:8 #, python-format msgid "Report @%(username)s's status" -msgstr "Rapportera @%(username)s's status" +msgstr "Rapportera @%(username)ss status" #: bookwyrm/templates/snippets/report_modal.html:10 #, python-format @@ -6762,7 +7318,7 @@ msgstr "Rapportera @%(username)s" #: bookwyrm/templates/snippets/report_modal.html:34 #, python-format msgid "This report will be sent to %(site_name)s's moderators for review." -msgstr "Den här rapporten kommer att skickas till %(site_name)s moderatorer för granskning." +msgstr "Den här rapporten kommer att skickas till %(site_name)ss moderatorer för granskning." #: bookwyrm/templates/snippets/report_modal.html:36 msgid "Links from this domain will be removed until your report has been reviewed." @@ -6808,6 +7364,10 @@ msgstr "Sluta läs" msgid "Finish reading" msgstr "Sluta läs" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Visa status" @@ -6971,7 +7531,7 @@ msgstr "Visa mindre" #: bookwyrm/templates/snippets/user_active_tag.html:5 msgid "Moved" -msgstr "" +msgstr "Flyttad" #: bookwyrm/templates/snippets/user_active_tag.html:12 msgid "Deleted" @@ -7004,7 +7564,7 @@ msgstr "" #: bookwyrm/templates/user/books_header.html:9 #, python-format msgid "%(username)s's books" -msgstr "%(username)s's böcker" +msgstr "%(username)ss böcker" #: bookwyrm/templates/user/goal.html:12 #, python-format @@ -7028,7 +7588,7 @@ msgstr "Dina %(year)s böcker" #: bookwyrm/templates/user/goal.html:46 #, python-format msgid "%(username)s's %(year)s Books" -msgstr "%(username)s's böcker %(year)s" +msgstr "%(username)ss böcker %(year)s" #: bookwyrm/templates/user/groups.html:14 msgid "Your Groups" @@ -7163,8 +7723,9 @@ msgid "View profile and more" msgstr "Visa profil och mer" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Filen överskrider maximal storlek: 10 MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7183,25 +7744,9 @@ msgstr[1] "%(num)d böcker - av %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Status-uppdateringar från {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Recensioner från {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Citat från {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Kommentarer från {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "ett nytt användarkonto" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/tr_TR/LC_MESSAGES/django.mo b/locale/tr_TR/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..1d2d484f7b Binary files /dev/null and b/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/locale/tr_TR/LC_MESSAGES/django.po b/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..d1834b3da5 --- /dev/null +++ b/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,7755 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Turkish\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: tr\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "Bir Gün" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "Bir Hafta" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "Bir Ay" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "Süresi Geçmez" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "Sınırsız" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "Yanlış şifre" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "Şifreler eşleşmiyor" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "Hatalı Şifre" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "Okumayı bitirme tarihi başlama tarihinden önce olamaz." + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "Okumayı bırakma tarihi başlama tarihinden önce olamaz." + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "Okumayı durdurma tarihi gelecekte olamaz." + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "Okumayı bitirme tarihi gelecekte olamaz." + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "Kullanıcı adı ya da şifre geçersiz" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "Bu kullanıcı adı ile bir kullanıcı zaten var" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "Bu email adresi ile bir kullanıcı zaten var." + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Bu e-posta adresi kaydedilemiyor." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "Hatalı kod" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Bu domain adresi engellenmiş. Bunun bir hata olduğunu düşünüyorsanız admininiz ile iletişime geçin." + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Bu dosya uzantılı link zaten bu kitaba eklenmiş. Eğer gözükmüyorsa domainin onaylanması gerekiyordur." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Liste sıralaması" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Kitap Adı" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Değerlendirme" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Sıralama Türü" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Artan" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Azalan" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Birincil" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Başarı" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Bağlantı" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Uyarı" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Tehlike" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "Otomatik oluşturulmuş rapor" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "Bekliyor" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "Kendini silme" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "Devre dışı bırakma" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "Moderatör askıya alması" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "Moderatör silmesi" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "Alan adı engellemesi" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "Sesli kitap" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "e-Kitap" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "Grafik Roman" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "Sert kapak" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "Kâğıt kapak" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "%(value)s geçerli bir ISBN kontrol toplamına sahip değil, beklenen: %(check_version)s" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Yorum" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Gözden Geçir" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Alıntı" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Takip Et" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Engelle" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "yetkisiz" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "bağlantı_hatası" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "geçersiz_ilişki" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "Federe olmuş" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Engellenmiş" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s geçerli bir remote_id değil" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s geçerli bir kullanıcı adı değil" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "kullanıcı adı" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "Bu kullanıcı adıyla bir kullanıcı zaten var." + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Herkese Açık" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Liste dışı" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Takipçiler" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Kişisel" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "Aktif" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "Tamamlandı" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "Durduruldu" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "Veri aktarımı durduruldu" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "Kitabı yüklerken hata" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "Kitap için eşleşme bulunamadı" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "Başarısız" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "Ücretsiz" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "Satın Alınabilir" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "Ödünç alınabilir" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Onaylanmış" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "Çözülen şikayet" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "Yeniden açılmış rapor" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "Mesaj gönderilen şikayetçi" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "Mesaj gönderilmiş şikayet edilmiş kullanıcı" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "Hesabı uzaklaştırılan kullanıcı" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "Uzaklaştırılması biten kullanıcı" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "Kullanıcının yetki seviyesi değiştirildi" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "Silinen kullanıcı hesabı" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "Engellenen alan adı" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "Onaylanmış alan adı" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "Silinmiş öge" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "%(display_name)s kullanıcısının durumu" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "%(display_name)s kullanıcısının %(book_title)s yorumu" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "%(display_name)s kullanıcısının %(book_title)s alıntısı" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "%(display_name)s kullanıcısının %(book_title)s incelemesi" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "%(display_name)s %(book_title)s kitabına %(display_rating).1f yıldız verdi" +msgstr[1] "%(display_name)s %(book_title)s kitabına %(display_rating).1f yıldız verdi" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "Değerlendirmeler" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "Yorumlar" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "Alıntılar" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "Diğer" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "Akış" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "Anasayfa" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "Kitap Akışı" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "Kitaplar" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "İngilizce" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "Català (Katalonca)" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "Deutsch (Almanca)" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "Esperanto (Esperanto)" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "Español (İspanyolca)" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "Euskara (Baskça)" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "Galego (Galiçyaca)" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "Italiano (İtalyanca)" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (Korece)" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "Suomi (Fince)" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "Français (Fransızca)" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (Litovca)" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "Nederlands (Felemenkçe)" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "Norsk (Norveççe)" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "Polski (Lehçe)" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (Brezilya Portekizcesi)" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (Avrupa Portekizcesi)" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "Română (Rumence)" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "Svenska (İsveççe)" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "Українська (Ukraynaca)" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (Basitleştirilmiş Çince)" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (Geleneksel Çince)" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "Eyvah!" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "İzin Reddedildi" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "Bu sayfayı görmek ve bu işlemi yapmak için yetkiniz yok. Kullanıcı yetkiniz %(level)s seviyesindedir." + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "Eğer erişim sahibi olmanız gerektiğini düşünüyorsanız, lütfen BookWyrm server yöneticelerine ulaşın." + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Bulunamadı" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Aradığınız sayfa burada gözükmüyor!" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "Dosya çok büyük" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "Yüklediğiniz dosya çok büyük." + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "Daha küçük bir dosya kullanmay deneyebilirı ya da BookWyrm serveri yöneticisine DATA_UPLOAD_MAX_MEMORY_SIZE ayarını yükseltmesi için ulaşabilirsiniz." + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Eyvah!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Sunucu Hatası" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Kusura bakmayın, bir şeyler yanlış gitti!" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Hakkında" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Hoşgeldiniz, burası %(site_name)s!" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s, okuyucular için bağımsız ve kendi kendini yöneten topluluklar olan BookWyrm ağının bir parçası. Bu özel bir topluluk olmasına rağmen, BookWyrm ağındaki her kullanıcıyla sorunsuzca etkileşime girebilirsin." + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "5 üzerinden %(rating)s oyu ile, %(title)s %(site_name)s topluluğunun en sevilen kitabı." + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "%(site_name)s kullanıcıları, %(title)s kitabını diğer her şeyden daha çok okumak istiyorlar." + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "%(title)s kitabı, %(site_name)s topluluğundaki en bölücü oy dağılımına sahip." + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Kitaplar hakkında konuş, okuma sürecini takip et, incelemeler yaz ve okuyacağın bir sonraki kitabı keşfet. Her zaman reklamsız, kurumsallık karşıtı ve topluluğunu öncelikte tutacak olan BookWyrm, küçük ve kişisel kalması için insan ölçeğinde tasarlanmış bir uygulama. İsteklerin, hata raporların veya büyük hayallerin varsa bize ulaş ve sesini duyur." + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "Yönetimle tanışın" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "%(site_name)s topluluğunun moderatörleri ve yöneticileri siteyi ayakta, çalışır, topluluk kurallarını yürürlükte tutar ve kullanıcılar spam ya da zararlı davranışları şikayet ettiğinde ilgilenirler." + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "Moderatör" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "Yönetici" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Doğrudan mesaj gönder" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "Topluluk Kuralları" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "Künye" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Aktif kullanıcılar:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Paylaşım sayısı:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "Yazılım sürümü:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "%(site_name)s Hakkında" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "Gizlilik Politikası" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "Kitaplarla %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s kitaplarla" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "%(display_name)s kitaplarla bu senesi" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Bu sayfayı paylaş" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Adresi kopyala" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Kopyalandı!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "Paylaşma durumu: anahtar ile herkese açık" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Bu sayfa tam adrese sahip herkes tarafından görüntülenebilir." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Sayfayı kişiye özel yap" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Paylaşma durumu: kişiye özel" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Bu sayfa kişiye özeldir, sadece sen görebilirsin." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Sayfayı herkese açık yap" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "Sayfanı kişiye özel yaptığında eski anahtarla sayfaya erişilemez. Eğer sayfayı tekrar herkese açık yaparsan yeni bir anahtar oluşturulacak." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Ne yazık ki %(display_name)s, %(year)s yılında hiçbir kitap bitirmedi" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "%(year)s yılında %(display_name)s %(books_total)s kitap okudu
    , toplamda %(pages_total)s sayfa!" +msgstr[1] "%(year)s yılında %(display_name)s %(books_total)s kitap okudu
    , toplamda %(pages_total)s sayfa!" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "Bu harika!" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "Bu ortalamada kitap başına %(pages)s sayfa." + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "(%(no_page_number)s kitabı için bir sayfa mevcut değil)" +msgstr[1] "(%(no_page_number)s kitapları için bir sayfa mevcut değil)" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "Bu yıl okudukları en kısa…" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "tarafından" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s sayfa" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "…ve en uzun" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "%(display_name)s %(year)s yılında %(goal)s kitap okuma hedefi koydu,
    ve bu hedefin %(goal_percent)s%% kadarını gerçekleştirdi" +msgstr[1] "%(display_name)s %(year)s yılında %(goal)s kitap okuma hedefi koydu,
    ve bu hedefin %(goal_percent)s%% kadarını gerçekleştirdi" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "Harikasın!" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "%(display_name)s %(ratings_total)s kere puanlama yaptı,
    ortalama puanı %(rating_average)s" +msgstr[1] "%(display_name)s %(ratings_total)s kere puanlama yaptı,
    ortalama puanı %(rating_average)s" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "En yüksek puanlı incelemesi" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "Puanı: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "%(display_name)s kullanıcısının %(year)s yılında okuduğu tüm kitaplar" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "Yazarı Düzenle" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "Yazar detayları" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Diğer Adlar:" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "Doğum:" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "Ölüm:" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "Harici bağlantılar" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "Vikipedi" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "Vikiveri'de görüntüle" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "Web sitesi" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "ISNI kaydını gör" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "ISFDB'de gör" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Veri yükle" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "OpenLibrary'de aç" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "Inventaire'de görüntüle" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "LibraryThing'de görüntüle" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "Goodreads'te Görüntüle" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "%(name)s kitapları" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Yazarı Düzenle:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Eklendi:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Güncellendi:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Son düzenleyen:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "Üst veri" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "İsim:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "Birden fazla değeri virgülle ayırın." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Hakkında:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Vikipedi bağlantısı:" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "Vikiveri:" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "Web sitesi:" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "Doğum tarihi:" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "Ölüm tarihi:" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "Yazar Tanıtıcıları" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "Openlibrary anahtarı:" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "Inventaire hesabı:" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "Librarything anahtarı:" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "Goodreads anahtarı:" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "ISFDB:" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Kaydet" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "İptal Et" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Onayla" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "Uzaktaki kaynağa bağlanılamıyor." + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "Kitabı Düzenle" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "Kapak eklemek için tıklayın" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "Kapak yüklemesi başarısız" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "Büyütmek için tıkla" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "(%(review_count)s incelemeler)" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "Açıklama Ekle" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Açıklama:" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s baskı" +msgstr[1] "%(count)s baskılar" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "Bu baskıyı rafa kaldırdınız:" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "Okuma etkinliğiniz" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "Okuma tarihlerini ekleyin" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "Bu kitap için herhangi bir okuma etkinliğiniz yok." + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "Değerlendirmelerin" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "Yorumların" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "Alıntıların" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "Konular" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "Yerler" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "Listeler" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "Listeye ekle" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "Ekle" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "ISBN kopyala" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "ISBN kopyalandı!" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "OCLC Sayısı:" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "Sesli ASIN:" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "ISFDB ID:" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "Goodreads:" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "Finna hesabı:" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Kapak resmi ekle" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "Kapak resmi yükle:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "URL ile kapak resmi yükle:" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Kitap kapağı önizlemesi" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "Kapat" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Düzenle \"%(book_title)s\"" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Kitap Ekle" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "Kitap kaydetme başarısız oldu, daha fazla bilgi için hata raporuna bakın." + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "Kitap Bilgisni Onayla" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "\"%(name)s\" yazarlardan biri mi?" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "%(book_title)s kitabının yazarı" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "%(alt_title)s kitabının yazarı" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "Daha fazla bilgi için isni.org sitesine bakın" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "Bu yeni bir yazar" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Yeni yazar oluşturuluyor: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "Bu zaten olan bir kitabın yeni bir edisyonu mu?" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "Bu yeni bir kitap" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "Geri" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Başlık:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "Başlığı sırala:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "Alt başlık:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "Dizi:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "Seri numarası:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "Diller:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "Konular:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "Konu ekle" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "Konu kaldır" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "Başka Konu Ekle" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "Yayın" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "Yayıncı:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "İlk yayınlanma tarihi:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "Yayınlanma tarihi:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "Yazarlar" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "%(name)s kaldır" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "%(name)s yazar sayfası" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "Yazarlar Ekle:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "Yazar Ekle" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "Anonim" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "Başka Yazar Ekle" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "Kapak" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "Fiziksel Özellikler" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Biçim:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "Format detayları:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "Sayfalar:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "Kitap Tanıtıcıları" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "Openlibrary hesabı:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "%(book_title)s'ın Baskıları" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "%(work_title)s'ın Baskıları" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Aradığın baskıyı bulamıyor musun?" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "Başka bir baskı ekle" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "Herhangi Biri" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "Dil:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Baskıları ara" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Dosya bağlantısı ekle" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "Bilinmeyen alanlardan gelen bağlantıların eklenmeden önce bir moderatör tarafından onaylanması gerekecektir." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "Bağlantı:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Dosya türü:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Uygunluk:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Bağlantıları düzenle" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "%(title)s için bağlantılar" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "Bağlantı" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Ekleyen" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Dosya türü" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Alan adı" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "Durum" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "Eylemler" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "Bilinmeyen kullanıcı" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Spam bildir" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "Bu kitap için bağlantı bulunmamaktadır." + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Dosyaya bağlantı ekle" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Dosya Bağlantıları" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "Kopya al" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Bağlantı yok" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "BookWyrm'den ayrılıyor" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "Bu bağlantı sizi şuraya yönlendiriyor:%(link_url)s.
    Onaylıyor musun?" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "Devam et" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s sayfalar" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s sayfalar" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "%(publisher)s tarafından %(date)s'de yayınlanmıştır." + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Yayınlanma tarihi%(date)s:" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "oylandı" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "Seriler" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "Kitap %(series_number)s" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "Sıralanmamış Kitap" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "Değerlendirmeyi düzenle" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "Alıntıyı düzenle" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "Yorumu düzenle" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "Durumu düzenle" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "E-postayı onayla" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "E-posta adresini onayla" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Hesabınızı oluşturmak için e-posta adresinize bir onay kodu gönderilmiştir." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Üzgünüz! Bu kodu bulamadık." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "Doğrulama kodu:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Gönder" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "Kodunu bulamıyor musun?" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "Onaylama bağlantısını tekrar gönder" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "E-posta adresi:" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "Bağlantıyı tekrar gönder" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Topluluk" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Yerel kullanıcılar" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "Federe topluluk" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "Dizin" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Profilinizi diğer BookWyrm kullanıcıları tarafından keşfedilebilir hale getirin." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Dizine Katıl" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Profil ayarlarından istediğin zaman vazgeçebilirsin" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Mesajı iptal et" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Sipariş veren" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Son zamanlarda aktif" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Tavsiye Edilen" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Kilitli hesap" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "Takip edilenler" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "raflarındaki kitaplar" +msgstr[1] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "gönderiler" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "Son aktiflik" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Kullanıcı türü" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "%(username)sokumak istiyor%(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "%(username)s okuma bitti %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "%(username)s okumaya başladı %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "%(username)s oy verdi %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "%(username)s inceledi %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "%(username)s yorum yaptı %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "%(username)s alıntı yaptı %(book_title)s" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "Keşfet" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "Yerel %(site_name)s topluluğundaki yenilikleri görün" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Durumu görüntüle" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "%(site_name)s katılmadan önce son bir adım! Lütfen aşağıdaki bağlantıya tıklayarak e-posta adresinizi onaylayın:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "E-posta Adresini Doğrula" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Veya girişteki %(confirmation_code)s konu girin." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "E-posta adresini doğrula" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Veya girişteki %(confirmation_code)s konu girin." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Merhaba," + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm %(site_name)s üzerinde barındırılıyor" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "E-posta Tercihleri" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "%(site_name)s'ne katılmaya davet edildin!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Şimdi Katıl" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "hakkında%(site_name)s daha fazla bilgi edinin." + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "%(site_name)s'ne katılmaya davet edildin! Hesap oluşturmak için aşağıdaki bağlantıya tıklayın." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "%(site_name)s hakkında daha fazla bilgi edinin:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "@%(reporter)s moderasyon için bir bağlantı alanını işaretledi." + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "@%(reporter)s, @%(reportee)s tarafından yapılan davranışları moderasyon için işaretledi." + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "Raporu görüntüle" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "%(site_name)s için yeni rapor" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "%(site_name)s şifrenizi sıfırlamayı talep ettiniz. Yeni bir şifre belirlemek ve hesabınıza giriş yapmak için aşağıdaki bağlantıya tıklayın." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Şifreyi Yenile" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Şifrenizi sıfırlamayı talep etmediyseniz, bu e-postayı yok sayabilirsiniz." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "%(site_name)s şifreyi sıfırla" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "Bu bir test e-postasıdır." + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "Test e-postası" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "%(site_name)s ana sayfa" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "Site yöneticisiyle iletişime geç" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "BookWyrm'a Katıl" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "%(username)s ile doğrudan mesajlar" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "Doğrudan Mesajlar" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Tüm iletiler" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Şu anda mesajınız yok." + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Şu anda herhangi bir etkinlik yok! Başlamak için bir kullanıcıyı takip etmeyi deneyin" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "Alternatif olarak, daha fazla durum türünü etkinleştirmeyi deneyebilirsiniz" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s okuma hedefi" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Okuma hedefiniziprofil sayfanızdan istediğiniz zaman belirleyebilir veya değiştirebilirsiniz" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "Güncellemeler" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "Kitaplarınız" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Şu anda burada hiç kitap yok! Başlamak için bir kitap aramayı deneyin" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "GoodReads gibi başka bir hizmetten kitap verileriniz var mı?" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "Okuma geçmişini içe aktar" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Takip edebileceklerin" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Önerilen kullanıcıları gösterme" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Dizini görüntüle" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "Yıl sonu, son 12 ay boyunca okunan tüm kitapların envanterini çıkarmak için en iyi zamandır. Kaç sayfa okudun? Bu yıl en çok beğendiğin kitap hangisi? Bu istatistikleri ve daha fazlasını derledik!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "%(year)s göre istatistiklerinizi keşfedin!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "%(book_title)s'nı okudunuz mu?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Kitaplarını ekle" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "Okunacaklar" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "Şu anda okunuyor" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "Okundu" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "Okuma durduruldu" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Ne okuyorsun?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Kitap ara" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "%(query)s için kitap bulunamadı" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Kitapları %(site_name)s'i kullanmaya başladığında ekleyebilirsin." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "Ara" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Önerilen kitaplar" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "Arama sonuçları" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Kitap bulunamadı" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Kaydet & Devam et" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Hoşgeldiniz" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "Bunlar başlangıç için bazı ilk adımlardır." + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Profilini oluştur" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "Kitap ekle" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "Arkadaş bul" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "Bu adımı atla" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "Bitir" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "G&örünen Ad:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Özet:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Biraz da sizden bahsedelim" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Avatar:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Takipçileri el ile kabul et:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Bu hesabı önerilen kullanıcılar arasında göster:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Hesabınız dizinde görünecek ve diğer BookWyrm kullanıcılarına önerilebilecektir." + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "Kullanıcıları diğer BookWyrm sunucularında ve Mastodon gibi federe servislerde takip edebilirsin." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Kullanıcı ara" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "%(query)s için kullanıcı bulunamadı" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "Grup oluştur" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "%(username)s tarafından yönetilmektedir" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Bu grup silinsin mi?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "Bu eylem geri alınamaz" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Sil" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Grubu Düzenle" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Grup Adı:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Grup Açıklaması:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Grubu sil" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Bu grubun üyeleri grup tarafından seçilmiş listeler oluşturabilir." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Liste Oluştur" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "Bu grubun listesi yok" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Grubu düzenle" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "Kullanıcı eklemek için ara" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Gruptan ayrıl" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "Seni takip ediyor" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "Yeni üyeler ekle!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s takip ettiğin takipçiler" +msgstr[1] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s raflarındaki kitaplar" +msgstr[1] "%(shared_books)s raflarındaki kitaplar" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "\"%(user_query)s\" için uygun üye bulunamadı" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Yönetici" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "Grup bulunamadı." + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "Bu bir kitabın ana sayfası. Bakalım buradayken neler yapabiliyorsun!" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "Kitap sayfası" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "Turu bitir" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "Devam" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "Burası kitap için bir okuma durumu ayarlayabileceğin yerdir. Bir sonraki aşamaya geçmek için düğmeye basabilir veya ayarlamak istediğiniz okuma durumunu seçmek için aşağı açılır düğmeyi kullanabilirsin." + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "Okunma Durumu" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "Okuma tarihlerini buraya el ile olarak da ekleyebilirsin. Önceki yöntemi kullanarak okuma durumunu değiştirmenin aksine, tarihleri el ile olarak eklemek onları otomatik olarak Okundu veya Okunuyor raflarınıza eklemeyecektir." + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "Her yıl yeniden okuduğun bir favorin var mı? Biz her şeyi hallettik - aynı kitap için birden fazla okuma tarihi ekleyebilirsin 😀" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "Bir kitabın çeşitli formatlarda veya dillerde birden fazla baskısı olabilir. İstediğin baskıyı seçebilirsin." + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "Diğer baskılar" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "Buraya bir inceleme, yorum veya alıntı gönderebilirsin." + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "Düşüncelerinizi paylaşın" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "Bu kitabı okuduysanız, isteğe bağlı bir yıldız derecelendirmesi içeren bir inceleme gönderebilirsiniz" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "İnceleme gönder" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "Bu kitap hakkındaki düşüncelerini genel olarak basit bir yorumla paylaşabilirsin" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "Yorum yaz" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "Mükemmel bir düzyazı mı okudunuz? Bir alıntı paylaşarak dünyaya duyurun!" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "Alıntı paylaş" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "İncelemen veya yorumun, kitabı henüz okumamış biri için kitabın keyfini bozacaksa, gönderini bir spoiler uyarısının ardına gizleyebilirsin" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "Spoiler Uyarısı" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "Gönderini kimlerin görebileceğini seç. Genel (herkes görebilir), Listelenmemiş (herkes görebilir fakat genel beslemelerde veya keşif sayfalarında görünmez), Takipçiler (sadece takipçilerin görebilir) ya da Gizli (sadece sen görebilirsin) gönderi gizlilikleri olabilir" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "Gizlilik gönder" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "Bazı e-kitaplar harici kaynaklardan ücretsiz olarak indirilebilir. Burada gösterilecekler." + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "İndirme linkleri" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "Açılır menüden Kitapların'ı seçerek tura devam et." + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "Tamam" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "Grubuna ait sayfaya hoş geldin! Burası kullanıcı ekleyip kaldırabileceğin, kullanıcı yöneticiliğinde listeler oluşturabileceğin ve grup ayrıntılarını düzenleyebileceğin yerdir." + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "Grubunuz" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "Grubunuza katılacak kullanıcıları bulmak için bu arama kutusunu kullanın. Şu anda kullanıcılar aynı Bookwyrm örneğinin üyesi olmalı ve grup sahibi tarafından davet edilmelidir." + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "Kullanıcıları bul" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "Grup üyeleriniz burada görünecektir. Grup sahibi bir yıldız sembolü ile işaretlenmiştir." + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "Grup üyeleri" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "Listeler sayfasından liste oluşturmanın yanı sıra, burada grubun ana sayfasında, grup tarafından seçilmiş bir liste oluşturabilirsin. Grubun herhangi bir üyesi, grup üyeleri tarafından oluşturulan bir liste oluşturabilir." + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "Grup listesi" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "Tebrikler, turu tamamladınız! Artık temel bilgileri biliyorsunuz, ancak kendi başınıza keşfedeceğiniz çok şey var. İyi okumalar!" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "Turu sonlandır" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "Bookwyrm'e hoş geldiniz!

    Başlamanıza yardımcı olması için rehberli tura katılmak ister misiniz?" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "Rehber Turu" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "Hayır teşekkürler" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "Evet, lütfen!" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "Fikrinizi değiştirirseniz, turunuzu başlatmak için Rehberli Tur bağlantısına tıklamanız yeterlidir" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "Bu arama kutusunu kullanarak kitapları, kullanıcıları veya listeleri arayın." + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "Arama kutusu" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "Cihazınızın kamerasını kullanarak ISBN barkodunu tarayarak kitap kayıtlarında arama yapın - kitapçıda veya kütüphanedeyken harika!" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "Barkod okuyucu" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "Okuma önerilerini ve bu sunucudaki en son gelişmeleri keşfetmek için Listeler, Keşfet ve Kitaplarınız bağlantılarını kullanın, veya katalogdaki kitaplarınızı görmek için!" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "Gezinme Çubuğu" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "Okuma durumu raflarınızdaki kitaplar burada gösterilecektir." + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "Takip ettiğiniz kişilerden gelen güncellemeler Ana Sayfa zaman akışınızda görünecektir.

    Kitaplar sekmesi, kitaplarınızla ilgili herhangi bir kişiden gelen etkinlikleri gösterir." + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "Zaman çizelgeleri" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "Yeni bir bildirim aldığınızda zil yanacaktır. Bu yandığında, ne kadar heyecan verici bir şey olduğunu öğrenmek için üzerine tıklayın!" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Bildirimler" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "Profilinize, kullanıcı dizininize, doğrudan mesajlarınıza ve ayarlarınıza buradaki menüden adınıza tıklayarak erişebilirsiniz." + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "Tura devam etmek için açılır menüden Profil'i seçmeyi deneyin." + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "Profil ve ayarlar menüsü" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "Bu, herhangi bir kullanıcı tarafından oluşturulan kitap listelerini keşfedebileceğiniz listeler sayfasıdır. Liste, rafa benzer bir kitap koleksiyonudur." + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "Raflar kitapları kendiniz için düzenlemek içindir, Listeler ise genellikle başkalarıyla paylaşmak içindir." + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "Yeni bir listenin nasıl oluşturulacağını görelim." + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "Liste Oluştur düğmesine ve ardından tura devam etmek için İleri düğmesine tıklayın" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "Yeni liste oluşturuluyor" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "Listenize bir ad vermelisiniz ve diğer insanların listenizin ne hakkında olduğunu anlamalarına yardımcı olmak için isteğe bağlı olarak bir açıklama verebilirsiniz." + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "Listenizi kimlerin görebileceğini buradan seçin. Liste gizliliği seçenekleri, tıpkı kitap incelemeleri gönderirken gördüğümüz gibi çalışır. Bu Bookwyrm'de sıkça rastlanan bir durumdur." + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "Gizliliği listele" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "Ayrıca listenizin nasıl düzenleneceğine de karar verebilirsiniz - yalnızca siz, herhangi biri veya bir grup tarafından." + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "Liste yönetimi" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "Bir sonraki turumuzda \"Gruplar\"ı keşfedeceğiz!" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "Sonraki: Gruplar" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "Beni oraya götür" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "Aradığınız kitap Open Library gibi uzak bir katalogda mevcutsa, Kitabı içe aktar seçeneğine tıklayın." + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "Aranıyor" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "Aradığınız kitap zaten bu Bookwyrm sunucusunda yer alıyorsa, kitabın sayfasına gitmek için başlığa tıklayabilirsiniz." + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "Aradığınız kitap listede yoksa, Open Library veya Inventaire gibi diğer kaynaklardan daha fazla kayıt yüklemeyi deneyin." + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "Daha kayıtlarını yükle" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "Kitabınız sonuçlarda yer almıyorsa, arama terimlerinizi değiştirmeyi deneyin." + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "Tekrar ara" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "Kitabınızı hala bulamıyorsanız, el ile bir kayıt ekleyebilirsiniz." + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "El ile kayıt ekleme" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "Tura devam etmek için mevcut bir kitabı içe aktarın, el ile ekleyin veya görüntüleyin." + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "Tura devam et" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "Bu, kitaplarınızın listelendiği ve raflara yerleştirildiği sayfadır." + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "Kitaplarınız" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "Okunacak, Şu Anda Okunuyor, Okundu ve Okuma Durduruldu varsayılan raflardır." + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "Okuma durumu rafları" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "Kitaplarınızı düzenlemek için ek özel raflar oluşturabilirsiniz. Özel bir raftaki bir kitap, varsayılan okuma durumu raflarından biri de dahil olmak üzere aynı anda herhangi bir sayıda başka rafta bulunabilir" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "Özel raflar ekleniyor." + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "Goodreads veya LibraryThing gibi başka bir hizmetten dışa aktarma dosyanız varsa, buraya aktarabilirsiniz." + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "Diğer servisten içeri aktar" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "Kitap raflarını incelediğimize göre, şimdi de ilgili bir kavrama göz atalım: kitap listeleri!" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "Tura devam etmek için Listeler bağlantısına tıkla." + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "Diğer kullanıcılarla birlikte bir grup oluşturabilir veya gruba katılabilirsin. Gruplar, grup tarafından seçilmiş kitap listelerini paylaşabilir ve gelecekte başka şeyler de yapabileceklerdir." + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "Gruplar" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "Yeni bir grup oluşturalım!" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "Grup oluşturuluyor" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "Grup görünürlüğü" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "Bu sekme, yıllık okuma hedefin doğrultusunda okuduğun her şeyi gösterir veya bir hedef belirlemene olanak tanır. Eğer sana göre değilse okuma hedefi belirlemek zorunda değilsin!" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "Bu etiket için henüz bir etkinlik yok!" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "Mevcut değillerse yeni raflar oluştur" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "İçe aktarılan incelemeler ve raflar için gizlilik ayarı:" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "Oluşturma Tarihi" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "Bu içe aktarma artık desteklenmeyen eski bir formattadır. Bu içe aktarmadaki eksik ögelerle ilgili sorun gidermek istersen, içe aktarma biçimini güncellemek için aşağıdaki butona tıkla." + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "Geçerli bir içe aktarma dosyası değil" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "Herhangi bir durumu (yorumlar, incelemler, veya alıntılar) taşımak istiyorsan, kullanıcı verilerini içe aktarmadan önce bu hesabı taşıdığın hesabın takma adı olarak ayarlaman veya o hesabı bu hesaba taşıman gerekir." + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "Kullanıcı ayarları" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "Üzerine yaz:" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "Takipçiler ve takip edilenler" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "İçe aktarma dosyasında listelenen tüm yıllar için okuma hedeflerinin üzerine yazar" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "Raflar" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "BookWyrm bu içe aktarma işleminden sonra bir hata düzeltmesi ile güncellendi" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "Şifre:" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "Bu e-posta adresini kullanan bir hesap varsa %(email)s'a bir şifre sıfırlama bağlantısı gönderilecektir." + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "Şifreyi Sıfırla" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "Ana gezinme menüsü" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "Parolayı Göster/Gizle" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "Liste konumu" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "Yön" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "Kitap Öner" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "%(related_user)s ekledi%(book_title)s, %(second_book_title)s, ve%(display_count)s listene başka kitapları \"%(list_name)s\"" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "%(related_user)s ve %(second_user)s, %(book_title)s hakkındaki yorumunu paylaştı" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "İçe aktarman tamamlandı." + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "%(sitename)s' giriş yap" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "Vah vah..." + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "..." + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "%(username)s takip et" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "Yeni şifre:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "Hesabı devre dışı bırak" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Hesabınız dizin içinde görünecek ve diğer BookWyrm kullanıcılarına önerilebilir." + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "Profilde takipçileri ve takip edilenleri sakla" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "Varsayılan ileti gizliliği:" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "..." + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "BookWyrm Hesabını Dışa Aktar" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "Dosyan şunları içerecektir:" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "Kullanıcı ayarlarının çoğu" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "Ortalama olarak, son dışa aktarmalar%(saat) saat sürmüştür." + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "." + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "Hesabınızı taşımak, tüm takipçilerinize bildirim gönderecek ve onları yeni hesabınızı takip etmeye yönlendirecektir." + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "Taşıma işleminden önce, bu kullanıcıyı hedef hesabın takma adı olarak eklemeyi unutmayın." + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "Yedek kodları oluştur" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "Kodu uygulamadan gir:" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "Hesabınızı daha güvenli hale getirmek için İki Aşamalı Doğrulama (2FA) kullanabilirsiniz. Bu özellik, her giriş yaptığınızda Authy, Google Authenticator veya Proton Authenticator gibi bir telefon uygulamasıyla oluşturulan tek kullanımlık bir kod girmenizi gerektirecektir." + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "Bu okuma tarihleri silinsin mi?" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "İlerleme Güncellemeleri:::" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "Kameraya erişilemedi" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "Taranıyor..." + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "Geçerli Kurallar" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "Haftalar" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "Kullanıcı kayıt etkinliği" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" +msgstr[1] "%(display_count)s alan adlarının incelenmesi gerekiyor" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" +msgstr[1] "%(display_count)s davet istekleri" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "E-posta Engelleme Listesi" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "Bu alan adına ait bir e-posta ile kayıt olunmaya çalışıldığında hesap oluşturulmayacak, ancak kayıt işlemi başarılı gibi görünecektir." + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "%(display_count)s kullanıcılar" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "Yok Sayılan Davet İstekleri" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "Kullanıcıların e-posta adreslerini doğrulamasını zorunlu kıl" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "Bu örnek joinbookwyrm.com'da önizlenirken kullanılır. HTML veya Markdown desteklenmez." + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "Topluluk Kuralları:" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "Manuel onaylı takipçiler:" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "Keşfedilebilirlik:" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "Sunucu Kurulumu" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" + diff --git a/locale/uk_UA/LC_MESSAGES/django.mo b/locale/uk_UA/LC_MESSAGES/django.mo index 3ca5833de0..6fa1fdff92 100644 Binary files a/locale/uk_UA/LC_MESSAGES/django.mo and b/locale/uk_UA/LC_MESSAGES/django.mo differ diff --git a/locale/uk_UA/LC_MESSAGES/django.po b/locale/uk_UA/LC_MESSAGES/django.po index f270324c43..560ecf160c 100644 --- a/locale/uk_UA/LC_MESSAGES/django.po +++ b/locale/uk_UA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-04 15:51\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Ukrainian\n" "Language: uk\n" @@ -33,56 +33,55 @@ msgstr "Один Місяць" msgid "Does Not Expire" msgstr "Невичерпний" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} використань" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "Без обмежень" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "Невірний пароль" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "Пароль не збігається" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "Неправильний Пароль" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "Дата прочитання не може бути до дати початку читання." -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "Дата зупинки читання не може бути раніше дати початку." -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "Дата зупинки читання не може бути в майбутньому." -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "Дата прочитання не може бути в майбутньому." -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "Ім’я користувача або пароль невірні" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "Користувач з таким ім'ям вже існує" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "Користувач із цією електронною адресою вже існує." -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "Ця адреса електронної пошти не може бути зареєстрована." + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "Неправильний код" @@ -90,7 +89,7 @@ msgstr "Неправильний код" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Цей домен заблоковано. Зверніться до адміністратора, якщо ви вважаєте це помилкою." -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Це посилання на файл вже було додано для цієї книги. Якщо воно не відображується, домен все ще перевіряється." @@ -102,8 +101,8 @@ msgstr "Порядком" msgid "Book Title" msgstr "Назвою книги" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Рейтингом" @@ -145,8 +144,8 @@ msgstr "Небезпека" msgid "Automatically generated report" msgstr "Автоматично згенерований звіт" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "Видалення модератором" msgid "Domain block" msgstr "Домен заблоковано" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "Аудіокнига" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "Електронна книга" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "Графічний роман" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "Тверда обкладинка" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "М'яка обкладинка" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Прокоментувати" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Рецензія" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "Цитата" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Підписатися" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Заблокувати" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "не авторизовано" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Федеруються" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s не є дійсним remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s не є дійсним іменем користувача" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "ім'я користувача" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "Користувач із таким ім'ям вже існує." -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "Користувач із таким ім'ям вже існує." msgid "Public" msgstr "Бачуть усі" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "Бачуть усі" msgid "Unlisted" msgstr "Тільки по посиланню" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "Тільки по посиланню" msgid "Followers" msgstr "Бачать тільки підписники" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "Бачать тільки підписники" msgid "Private" msgstr "Не бачить ніхто" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "В процесі" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "Завершено" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "Зупинено" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "Імпорт зупинено" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "Помилка при завантаженні книги" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "Не вдалося знайти відповідну книгу" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "Безплатно" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "Можна придбати" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "Доступно для позики" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "Схвалено" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "Прокоментувати" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "Скаргу розглянуто" @@ -363,123 +429,161 @@ msgstr "Домен підтверджено" msgid "Deleted item" msgstr "Запис видалено" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "Рецензії" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "Коментарі" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "Цитати" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "Все інше" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "Головна Стрічка" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "Головна" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "Книжкова Стрічка" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "Книги" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "Англійська" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (Каталонська)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch (Німецька)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (Есперанто)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español (Іспанська)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (Баскська)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (Галісійська)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (Італійська)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Фінська)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français (Французька)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Литовська)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (Нідерландська)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (Норвезька)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (Польська)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Бразильська португальська)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Європейська португальська)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (Румунська)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (Шведська)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (Ukrainian)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Спрощена китайська)" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Традиційна китайська)" @@ -517,11 +621,8 @@ msgid "The file you are uploading is too large." msgstr "Файл, який ви завантажуєте, завеликий." #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -"Ви можете спробувати використати менший файл або попросити адміністратора сервера BookWyrm збільшити параметр DATA_UPLOAD_MAX_MEMORY_SIZE. " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -617,7 +718,7 @@ msgid "Statuses posted:" msgstr "Опубліковані статуси:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "Версія програмного забезпечення:" @@ -731,7 +832,7 @@ msgstr "Найшвидше прочитана книга цього року…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -815,44 +916,48 @@ msgid "Wikipedia" msgstr "Вікіпедія" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "Вебсайт" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "Переглянути запис ISNI" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "Переглянути на ISFDB" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "Завантажити данні" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "Переглянути на OpenLibrary" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "Переглянути на Inventaire" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "Переглянути на LibraryThing" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "Переглянути на Goodreads" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "Книги за авторством %(name)s" @@ -889,8 +994,8 @@ msgid "Name:" msgstr "Ім'я:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "Якщо значень багато, розділіть їх комами." @@ -902,50 +1007,54 @@ msgstr "Біографія:" msgid "Wikipedia link:" msgstr "Посилання на Вікіпедію:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "Вебсайт:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "Дата народження:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "Дата смерті:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "Ідентифікатори Автора" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Ключ Openlibrary:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Ключ Librarything:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Ключ Goodreads:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -953,7 +1062,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -967,14 +1076,14 @@ msgstr "ISNI:" msgid "Save" msgstr "Зберегти" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -984,6 +1093,7 @@ msgstr "Зберегти" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -1001,34 +1111,38 @@ msgstr "Процес завантаження даних з'єднається #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "Підтвердити" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "Не вдалося під'єднатися до віддаленого джерела." -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "Редагувати Книгу" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "Натисніть, щоб додати обкладинку" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "Не вдалося завантажити обкладинку" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "Натисніть для збільшення" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" @@ -1037,17 +1151,17 @@ msgstr[1] "(%(review_count)s рецензії)" msgstr[2] "(%(review_count)s рецензій)" msgstr[3] "(%(review_count)s рецензій)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "Додати Опис" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Опис:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" @@ -1056,49 +1170,49 @@ msgstr[1] "%(count)s видання" msgstr[2] "%(count)s видань" msgstr[3] "%(count)s видань" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "Ви відклали це видання на полицю:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Інше видання цієї книги знаходиться на вашій %(shelf_name)s полиці." -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "Ваша читацька активність" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "Додати дати коли прочитано" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "Ви не маєте жодної читацької активності для цієї книги." -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "Ваші відгуки" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "Ваші коментарі" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "Ваші цитати" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "Теми" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "Місця" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1106,18 +1220,18 @@ msgstr "Місця" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "Списки" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "Додати до списку" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1140,40 +1254,50 @@ msgid "Copied ISBN!" msgstr "ISBN скопійовано!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "Номер OCLC:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "Додати обкладинку" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "Завантажити обкладинку:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "Завантажити обкладинку з посилання:" @@ -1247,7 +1371,7 @@ msgid "This is a new work" msgstr "Це новий твір" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1300,125 +1424,129 @@ msgstr "Назад" msgid "Title:" msgstr "Назва:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "Назва Для Сортування:" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "Підзаголовок:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "Серії:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "Номер серії:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "Мови:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "Теми:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "Додати тему" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "Видалити тему" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "Додати іншу тему" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "Видання" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "Видавець:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "Дата першого видання:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "Дата видання:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "Автори" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "Видалити %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "Сторінка автора для %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "Додати авторів:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "Додати автора" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "Ілона Павлюк" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "Додати іншого автора" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "Обкладинка" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "Фізичні властивості" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Формат:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "Деталі формату:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "Сторінок:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "Ідентифікатори книги" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1446,7 +1574,7 @@ msgid "Any" msgstr "Будь-яка" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "Мова:" @@ -1507,12 +1635,15 @@ msgid "Domain" msgstr "Домен" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1524,8 +1655,8 @@ msgstr "Статус" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1571,8 +1702,8 @@ msgstr "Ви покидаєте BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "Це посилання веде на: %(link_url)s.
    Ви впевнені що хочете перейти за ним?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "Продовжити" @@ -1628,7 +1759,19 @@ msgstr "Несортована Книга" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "Процес завантаження даних з'єднається з %(source_name)s та перевірить наявність метаданих про цю книгу, яких тут немає. Наявні метадані не буде перезаписано." -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "Редагувати статус" @@ -1655,7 +1798,7 @@ msgstr "Код підтвердження:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "Надіслати" @@ -1737,12 +1880,12 @@ msgstr "Рекомендовані" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1867,8 +2010,8 @@ msgstr "Привіт," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "BookWyrm розміщений на %(site_name)s" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1886,8 +2029,8 @@ msgstr "Приєднатися зараз" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "Дізнайтеся більше про %(site_name)s." +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2063,19 +2206,19 @@ msgid "Add to your books" msgstr "Додати до ваших книг" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "В \"Прочитати\"" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "Зараз Читаю" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2084,7 +2227,7 @@ msgid "Read" msgstr "Прочитано" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "Читання Зупинено" @@ -2117,7 +2260,7 @@ msgstr "Ви зможете додавати книги, коли почнете #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "Пошук" @@ -2773,6 +2916,7 @@ msgstr "Ви можете створити або приєднатися до г #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "Групи" @@ -2889,11 +3033,13 @@ msgid "You have %(display_left)s left." msgstr "Залишилось %(display_left)s." #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "В середньому, недавні імпорти зайняли %(hours)s годин." #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "В середньому, недавні імпорти зайняли %(minutes)s хвилин." @@ -2919,69 +3065,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "Ви можете завантажити дані Goodreads на сторінці Import/Export вашого облікового запису Goodreads." -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "Файл даних:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "Разом з рецензіями" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "Налаштування приватності для імпортованих рецензій:" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "Імпортувати" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "Ви досягли ліміту на імпорт." -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "Імпортування тимчасово відключено; дякуємо за терпіння." -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "Останні Імпорти" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "Дата Створення" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "Останнє Оновлення" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "Одиниць" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "Останнім часом імпортів не було" @@ -3005,20 +3163,24 @@ msgid "Imports" msgstr "Імпорти" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "Імпорт розпочато:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "Триває" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "Оновити" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "Зупинити імпорт" @@ -3037,6 +3199,7 @@ msgid "Review items" msgstr "Огляд елементів" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." @@ -3046,6 +3209,7 @@ msgstr[2] "Не вдалося імпортувати %(display_counter)s еле msgstr[3] "Не вдалося імпортувати %(display_counter)s елементів." #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "Переглянути та виправити невдалі елементи." @@ -3054,12 +3218,14 @@ msgid "Row" msgstr "Рядок" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "Назва" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3068,8 +3234,8 @@ msgid "Openlibrary key" msgstr "Ключ Openlibrary" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "Автор" @@ -3077,13 +3243,9 @@ msgstr "Автор" msgid "Shelf" msgstr "Полиця" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "Рецензія" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "Книга" @@ -3101,6 +3263,8 @@ msgid "View imported review" msgstr "Показати імпортовану рецензію" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "Імпортовано" @@ -3136,114 +3300,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "Профіль користувача" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3267,15 +3436,18 @@ msgid "Reject" msgstr "Відхилити" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "Невдалі елементи" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "Виправлення невдалого імпорту" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "Повторна спроба імпорту може виправити пропущені елементи у таких випадках, як:" @@ -3284,21 +3456,96 @@ msgid "The book has been added to the instance since this import" msgstr "Книга була додана до інстансу з моменту імпорту" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "Непостійна помилка або тайм-аут призвела до недоступності зовнішнього джерела даних." #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "З моменту цього імпорту, BookWyrm було оновлено з виправленням помилок" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "Зв'яжіться з вашим адміністратором або сповістіть про проблему, якщо ви бачите неочікувані помилки." +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "Загалом" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Статусів" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "Зареєструватися" @@ -3349,7 +3596,7 @@ msgid "Login" msgstr "Авторизація" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Увійти" @@ -3365,22 +3612,22 @@ msgstr "Адресу електронної пошти успішно підтв msgid "Username:" msgstr "Ім'я користувача (username):" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Пароль:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Забули пароль?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "Докладніше про цей сайт" @@ -3408,7 +3655,7 @@ msgstr "Скинути пароль" msgid "Reactivate Account" msgstr "Повторна Активація Облікового Запису" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "Реактивувати акаунт" @@ -3418,8 +3665,8 @@ msgid "%(site_name)s search" msgstr "Пошук по %(site_name)s" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "Шукати книгу, користувача або список" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3632,6 +3879,8 @@ msgid "List position" msgstr "Позиція в списку" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "Встановити" @@ -3962,7 +4211,7 @@ msgstr "%(related_user)s та %(other_user #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "Новий домен посилання потребує перевірки" msgstr[1] "%(display_count)s нових доменів посилань потребують модерації" msgstr[2] "%(display_count)s нових доменів посилань потребують модерації" @@ -4137,21 +4386,21 @@ msgstr "" msgid "You have already requested to follow %(account)s" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "" @@ -4192,95 +4441,27 @@ msgstr "" msgid "Follow %(username)s" msgstr "" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "Перемістити обліковий запис" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "Створити псевдонім" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "Перемістити обліковий запис" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "Створити псевдонім" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "Додайте інший обліковий запис як псевдонім" +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "Додайте інший обліковий запис як псевдонім" #: bookwyrm/templates/preferences/alias_user.html:16 msgid "Marking another account as an alias is required if you want to move that account to this one." @@ -4365,6 +4546,12 @@ msgstr "" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "" +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "" @@ -4394,12 +4581,12 @@ msgstr "Профіль" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "" @@ -4408,94 +4595,160 @@ msgid "Show reading goal prompt in feed" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:75 -msgid "Show suggested users" +msgid "Show ratings" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "Приховати підписників і підписки в профілі" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4514,6 +4767,10 @@ msgstr "" msgid "Account" msgstr "" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4549,6 +4806,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4594,6 +4969,7 @@ msgstr "" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "" @@ -4726,8 +5102,8 @@ msgstr "" msgid "Search type" msgstr "" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4737,12 +5113,12 @@ msgstr "" msgid "Users" msgstr "" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4766,7 +5142,7 @@ msgstr "Редагувати" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "" @@ -4784,13 +5160,13 @@ msgstr "" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "" @@ -4859,7 +5235,6 @@ msgstr "Колір:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "" @@ -4872,35 +5247,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "" #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "Увімкнено:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "" @@ -4945,6 +5328,7 @@ msgstr "Видалити правило" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Стан Celery" @@ -4973,6 +5357,7 @@ msgid "Import triggered" msgstr "Розпочаті імпорти" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "Конектори" @@ -5016,8 +5401,9 @@ msgid "Active Tasks" msgstr "Активні завдання" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -5030,6 +5416,8 @@ msgid "Run time" msgstr "Час виконання" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "Пріоритет" @@ -5062,6 +5450,66 @@ msgstr "Очищення черг може спричинити серйозні msgid "Errors" msgstr "Помилки" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "Причина деактивації:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "Інстанси У Федерації" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "Оновити" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5069,7 +5517,7 @@ msgid "Dashboard" msgstr "Панель керування" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "Всього користувачів" @@ -5078,40 +5526,36 @@ msgstr "Всього користувачів" msgid "Active this month" msgstr "Активних у цьому місяці" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "Статусів" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "Творів" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "Активність Інстансу" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "Інтервал:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "Дні" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "Тижні" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "Активність по реєстраціях" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "Активність по статусах" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "Творів створено" @@ -5123,9 +5567,13 @@ msgstr "Реєстрації" msgid "Statuses posted" msgstr "Опубліковані статуси" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "Загалом" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5215,7 +5663,7 @@ msgstr "Наразі немає заблокованих доменів" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "Налаштування електронної пошти" @@ -5228,7 +5676,7 @@ msgid "Successfully sent test email." msgstr "Тестовий email успішно надісланий." #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "Відправник:" @@ -5276,15 +5724,6 @@ msgstr "Відправити тестовий email" msgid "Add instance" msgstr "Додати інстанс" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "Інстанси У Федерації" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5360,12 +5799,6 @@ msgstr "Нотатки" msgid "No notes" msgstr "Нема нотаток" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Заблокувати" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "Усіх користувачів з цього інстансу буде деактивовано." @@ -5418,6 +5851,49 @@ msgstr "ПО" msgid "No instances found" msgstr "Інстансів не знайдено" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "Завершені" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5464,7 +5940,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "Деякі користувачі можуть спробувати імпортувати велику кількість книг, що не завадить обмежити." #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "Встановіть значення 0, аби не встановлювати жодних обмежень." @@ -5484,62 +5960,81 @@ msgstr "днів." msgid "Set limit" msgstr "Встановити ліміт" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "Завершені" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "Користувач" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "Останнє Оновлення" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "В очікуванні" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "Успішно імпортовано" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "Відповідних імпортів не знайдено." -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5703,6 +6198,10 @@ msgstr "Модерація" msgid "Reports" msgstr "Скарги" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5713,22 +6212,26 @@ msgstr "Домени Посилань" msgid "System" msgstr "Система" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" -msgstr "Стан Celery" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "Налаштування Інстансу" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "Налаштування Сайту" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5736,7 +6239,7 @@ msgstr "Налаштування Сайту" msgid "Registration" msgstr "Реєстрація" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5942,6 +6445,61 @@ msgstr "Розглянута" msgid "No reports found." msgstr "Скарг не знайдено." +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6187,10 +6745,6 @@ msgstr "Підтверджує підписників вручну:" msgid "Discoverable:" msgstr "Видимий:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "Причина деактивації:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "Подробиці інстансу" @@ -6284,8 +6838,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "Ваш домен, здається, налаштований неправильно. Він не повинен містити протокол або слеш." #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "Ваш інстанс BookWyrm працює в режимі продакшену без https. Вам слід увімкнути USE_HTTPS." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6295,39 +6849,39 @@ msgstr "Налаштування" msgid "Instance domain:" msgstr "Домен інстансу:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "Протокол:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "Використовує S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "Стандартна мова інтерфейсу:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "Попередній перегляд зображень увімкнено:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "Мініатюри зображень увімкнено:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "Все виглядає правильно?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "Це ваш останній шанс встановити домен та протокол." -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "Ви можете змінити налаштування вашого інстансу в файлі .env на вашому сервері." -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "Переглянути інструкції з встановлення" @@ -6344,7 +6898,7 @@ msgid "Need help?" msgstr "Потрібна допомога?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "Створити полицю" @@ -6352,16 +6906,16 @@ msgstr "Створити полицю" msgid "Edit Shelf" msgstr "Редагувати полицю" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "Усі книги" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "Імпортувати Книги" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" @@ -6370,43 +6924,56 @@ msgstr[1] "%(formatted_count)s книги" msgstr[2] "%(formatted_count)s книг" msgstr[3] "%(formatted_count)s книг" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(показуються %(start)s-%(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "Редагувати полицю" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "Видалити полицю" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "Додано до полиці" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "Почато" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "Прочитано" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "До" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "Ця полиця порожня." +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "Запросити" @@ -6510,10 +7077,6 @@ msgstr "Увага, спойлери!" msgid "Comment:" msgstr "Коментар:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "Оновити" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "Опублікувати" @@ -6539,7 +7102,7 @@ msgstr "Сторінка:" msgid "At percent:" msgstr "Відсоток:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "по" @@ -6584,10 +7147,6 @@ msgstr "Застосувати фільтри" msgid "Follow @%(username)s" msgstr "Підписатися на @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "Підписатися" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "Скасувати запит на підписку" @@ -6620,7 +7179,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "Код BookWyrm знаходиться у вільному доступі. Ви можете долучитися до розробки або повідомити про проблеми на GitHub." #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "Без оцінки" @@ -6634,7 +7193,7 @@ msgstr[2] "%(half_rating)s зірок" msgstr[3] "%(half_rating)s зірок" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6871,6 +7430,10 @@ msgstr "Припинити читання" msgid "Finish reading" msgstr "Відмітити прочитаним" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "Переглянути статус" @@ -7230,8 +7793,9 @@ msgid "View profile and more" msgstr "Перегляд профілю та багато іншого" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "Файл перевищує максимальний розмір: 10 Мб" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7252,25 +7816,9 @@ msgstr[3] "%(num)d книг – від %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "Оновлення статусу від {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "Рецензії від {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "Цитати додані {obj.display_name}" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "Коментарі від {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/vi_VN/LC_MESSAGES/django.mo b/locale/vi_VN/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..e2bf468e2f Binary files /dev/null and b/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/locale/vi_VN/LC_MESSAGES/django.po b/locale/vi_VN/LC_MESSAGES/django.po new file mode 100644 index 0000000000..5365244b06 --- /dev/null +++ b/locale/vi_VN/LC_MESSAGES/django.po @@ -0,0 +1,7718 @@ +msgid "" +msgstr "" +"Project-Id-Version: bookwyrm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" +"Last-Translator: Mouse Reeve \n" +"Language-Team: Vietnamese\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: vi\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:42 +msgid "One Day" +msgstr "" + +#: bookwyrm/forms/admin.py:43 +msgid "One Week" +msgstr "" + +#: bookwyrm/forms/admin.py:44 +msgid "One Month" +msgstr "" + +#: bookwyrm/forms/admin.py:45 +msgid "Does Not Expire" +msgstr "" + +#: bookwyrm/forms/admin.py:50 +msgid "Unlimited" +msgstr "" + +#: bookwyrm/forms/edit_user.py:105 +msgid "Incorrect password" +msgstr "" + +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 +msgid "Password does not match" +msgstr "" + +#: bookwyrm/forms/edit_user.py:135 +msgid "Incorrect Password" +msgstr "" + +#: bookwyrm/forms/forms.py:59 +msgid "Reading finish date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:64 +msgid "Reading stopped date cannot be before start date." +msgstr "" + +#: bookwyrm/forms/forms.py:72 +msgid "Reading stopped date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/forms.py:79 +msgid "Reading finished date cannot be in the future." +msgstr "" + +#: bookwyrm/forms/landing.py:37 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/forms/landing.py:56 +msgid "User with this username already exists" +msgstr "" + +#: bookwyrm/forms/landing.py:65 +msgid "A user with this email already exists." +msgstr "" + +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 +msgid "Incorrect code" +msgstr "" + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "" + +#: bookwyrm/forms/links.py:51 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "" + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "" + +#: bookwyrm/models/antispam.py:113 bookwyrm/models/antispam.py:147 +msgid "Automatically generated report" +msgstr "" + +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 +#: bookwyrm/templates/import/import_status.html:214 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "" + +#: bookwyrm/models/base_model.py:19 +msgid "Self deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:20 +msgid "Self deactivation" +msgstr "" + +#: bookwyrm/models/base_model.py:21 +msgid "Moderator suspension" +msgstr "" + +#: bookwyrm/models/base_model.py:22 +msgid "Moderator deletion" +msgstr "" + +#: bookwyrm/models/base_model.py:23 +msgid "Domain block" +msgstr "" + +#: bookwyrm/models/book.py:473 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:474 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:475 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:476 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:477 +msgid "Paperback" +msgstr "" + +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:22 +msgid "Federated" +msgstr "" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:26 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "" + +#: bookwyrm/models/fields.py:35 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "" + +#: bookwyrm/models/fields.py:44 bookwyrm/models/fields.py:53 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "" + +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "" + +#: bookwyrm/models/fields.py:206 +msgid "A user with that username already exists." +msgstr "" + +#: bookwyrm/models/fields.py:225 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "" + +#: bookwyrm/models/fields.py:226 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "" + +#: bookwyrm/models/fields.py:227 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/followers.html:11 +#: bookwyrm/templates/user/relationships/followers.html:21 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "" + +#: bookwyrm/models/fields.py:228 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "" + +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 +#: bookwyrm/templates/snippets/user_active_tag.html:8 +msgid "Active" +msgstr "" + +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 +msgid "Complete" +msgstr "" + +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 +msgid "Stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 +msgid "Import stopped" +msgstr "" + +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 +msgid "Error loading book" +msgstr "" + +#: bookwyrm/models/import_job.py:382 +msgid "Could not find a match for book" +msgstr "" + +#: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 +msgid "Failed" +msgstr "" + +#: bookwyrm/models/link.py:55 +msgid "Free" +msgstr "" + +#: bookwyrm/models/link.py:56 +msgid "Purchasable" +msgstr "" + +#: bookwyrm/models/link.py:57 +msgid "Available for loan" +msgstr "" + +#: bookwyrm/models/link.py:74 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "" + +#: bookwyrm/models/report.py:85 +msgid "Resolved report" +msgstr "" + +#: bookwyrm/models/report.py:86 +msgid "Re-opened report" +msgstr "" + +#: bookwyrm/models/report.py:87 +msgid "Messaged reporter" +msgstr "" + +#: bookwyrm/models/report.py:88 +msgid "Messaged reported user" +msgstr "" + +#: bookwyrm/models/report.py:89 +msgid "Suspended user" +msgstr "" + +#: bookwyrm/models/report.py:90 +msgid "Un-suspended user" +msgstr "" + +#: bookwyrm/models/report.py:91 +msgid "Changed user permission level" +msgstr "" + +#: bookwyrm/models/report.py:92 +msgid "Deleted user account" +msgstr "" + +#: bookwyrm/models/report.py:93 +msgid "Blocked domain" +msgstr "" + +#: bookwyrm/models/report.py:94 +msgid "Approved domain" +msgstr "" + +#: bookwyrm/models/report.py:95 +msgid "Deleted item" +msgstr "" + +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 +msgid "Reviews" +msgstr "" + +#: bookwyrm/models/user.py:40 +msgid "Comments" +msgstr "" + +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 +msgid "Quotations" +msgstr "" + +#: bookwyrm/models/user.py:42 +msgid "Everything else" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home Timeline" +msgstr "" + +#: bookwyrm/settings.py:237 +msgid "Home" +msgstr "" + +#: bookwyrm/settings.py:238 +msgid "Books Timeline" +msgstr "" + +#: bookwyrm/settings.py:238 +#: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 +#: bookwyrm/templates/search/layout.html:22 +#: bookwyrm/templates/search/layout.html:44 +#: bookwyrm/templates/user/layout.html:107 +msgid "Books" +msgstr "" + +#: bookwyrm/settings.py:315 +msgid "English" +msgstr "" + +#: bookwyrm/settings.py:316 +msgid "Català (Catalan)" +msgstr "" + +#: bookwyrm/settings.py:317 +msgid "Deutsch (German)" +msgstr "" + +#: bookwyrm/settings.py:318 +msgid "Esperanto (Esperanto)" +msgstr "" + +#: bookwyrm/settings.py:319 +msgid "Español (Spanish)" +msgstr "" + +#: bookwyrm/settings.py:320 +msgid "Euskara (Basque)" +msgstr "" + +#: bookwyrm/settings.py:321 +msgid "Galego (Galician)" +msgstr "" + +#: bookwyrm/settings.py:322 +msgid "Italiano (Italian)" +msgstr "" + +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:325 +msgid "Français (French)" +msgstr "" + +#: bookwyrm/settings.py:326 +msgid "Lietuvių (Lithuanian)" +msgstr "" + +#: bookwyrm/settings.py:327 +msgid "Nederlands (Dutch)" +msgstr "" + +#: bookwyrm/settings.py:328 +msgid "Norsk (Norwegian)" +msgstr "" + +#: bookwyrm/settings.py:329 +msgid "Polski (Polish)" +msgstr "" + +#: bookwyrm/settings.py:330 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:331 +msgid "Português Europeu (European Portuguese)" +msgstr "" + +#: bookwyrm/settings.py:332 +msgid "Română (Romanian)" +msgstr "" + +#: bookwyrm/settings.py:333 +msgid "Svenska (Swedish)" +msgstr "" + +#: bookwyrm/settings.py:334 +msgid "Українська (Ukrainian)" +msgstr "" + +#: bookwyrm/settings.py:335 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:336 +msgid "繁體中文 (Traditional Chinese)" +msgstr "" + +#: bookwyrm/templates/403.html:5 +msgid "Oh no!" +msgstr "" + +#: bookwyrm/templates/403.html:9 bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "" + +#: bookwyrm/templates/403.html:11 +#, python-format +msgid "You do not have permission to view this page or perform this action. Your user permission level is %(level)s." +msgstr "" + +#: bookwyrm/templates/403.html:15 +msgid "If you think you should have access, please speak to your BookWyrm server administrator." +msgstr "" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "" + +#: bookwyrm/templates/413.html:4 bookwyrm/templates/413.html:8 +msgid "File too large" +msgstr "" + +#: bookwyrm/templates/413.html:9 +msgid "The file you are uploading is too large." +msgstr "" + +#: bookwyrm/templates/413.html:11 +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "" + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "" + +#: bookwyrm/templates/about/about.html:21 +#: bookwyrm/templates/get_started/layout.html:22 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/about/about.html:25 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "" + +#: bookwyrm/templates/about/about.html:45 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "" + +#: bookwyrm/templates/about/about.html:64 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "" + +#: bookwyrm/templates/about/about.html:83 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "" + +#: bookwyrm/templates/about/about.html:94 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "" + +#: bookwyrm/templates/about/about.html:105 +msgid "Meet your admins" +msgstr "" + +#: bookwyrm/templates/about/about.html:108 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "" + +#: bookwyrm/templates/about/about.html:122 +msgid "Moderator" +msgstr "" + +#: bookwyrm/templates/about/about.html:124 bookwyrm/templates/user_menu.html:62 +msgid "Admin" +msgstr "" + +#: bookwyrm/templates/about/about.html:140 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:28 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +#: bookwyrm/templates/snippets/footer.html:27 +msgid "Code of Conduct" +msgstr "" + +#: bookwyrm/templates/about/impressum.html:4 +#: bookwyrm/templates/about/impressum.html:9 +#: bookwyrm/templates/about/layout.html:54 +#: bookwyrm/templates/snippets/footer.html:34 +msgid "Impressum" +msgstr "" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:68 +msgid "Software version:" +msgstr "" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 +#: bookwyrm/templates/snippets/footer.html:8 +#, python-format +msgid "About %(site_name)s" +msgstr "" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +#: bookwyrm/templates/snippets/footer.html:30 +msgid "Privacy Policy" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:128 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:134 +#, python-format +msgid "(No page data was available for %(no_page_number)s book)" +msgid_plural "(No page data was available for %(no_page_number)s books)" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:150 +msgid "Their shortest read this year…" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:157 +#: bookwyrm/templates/annual_summary/layout.html:178 +#: bookwyrm/templates/annual_summary/layout.html:247 +#: bookwyrm/templates/book/book.html:70 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:163 +#: bookwyrm/templates/annual_summary/layout.html:184 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:171 +msgid "…and the longest" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:202 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:211 +msgid "Way to go!" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:226 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" + +#: bookwyrm/templates/annual_summary/layout.html:240 +msgid "Their best rated review" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:253 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "" + +#: bookwyrm/templates/annual_summary/layout.html:270 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "" + +#: bookwyrm/templates/author/author.html:19 +#: bookwyrm/templates/author/author.html:20 +msgid "Edit Author" +msgstr "" + +#: bookwyrm/templates/author/author.html:36 +msgid "Author details" +msgstr "" + +#: bookwyrm/templates/author/author.html:40 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "" + +#: bookwyrm/templates/author/author.html:49 +msgid "Born:" +msgstr "" + +#: bookwyrm/templates/author/author.html:56 +msgid "Died:" +msgstr "" + +#: bookwyrm/templates/author/author.html:66 +msgid "External links" +msgstr "" + +#: bookwyrm/templates/author/author.html:71 +msgid "Wikipedia" +msgstr "" + +#: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 +msgid "Website" +msgstr "" + +#: bookwyrm/templates/author/author.html:95 +msgid "View ISNI record" +msgstr "" + +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 +msgid "View on ISFDB" +msgstr "" + +#: bookwyrm/templates/author/author.html:108 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:147 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "" + +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 +msgid "View on OpenLibrary" +msgstr "" + +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 +msgid "View on Inventaire" +msgstr "" + +#: bookwyrm/templates/author/author.html:143 +msgid "View on LibraryThing" +msgstr "" + +#: bookwyrm/templates/author/author.html:151 +msgid "View on Goodreads" +msgstr "" + +#: bookwyrm/templates/author/author.html:166 +#, python-format +msgid "Books by %(name)s" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:21 +msgid "Metadata" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 +msgid "Separate multiple values with commas." +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 +msgid "Website:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:67 +msgid "Birth date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:74 +msgid "Death date:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:81 +msgid "Author Identifiers" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:83 +msgid "Openlibrary key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 +msgid "Inventaire ID:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:97 +msgid "Librarything key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 +msgid "Goodreads key:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:111 +msgid "ISFDB:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:118 +msgid "ISNI:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/edit/edit_book.html:150 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:86 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:146 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/registration.html:96 +#: bookwyrm/templates/settings/registration_limited.html:76 +#: bookwyrm/templates/settings/site.html:144 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:89 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:129 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:247 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:152 +#: bookwyrm/templates/book/edit/edit_book.html:155 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/preferences/disable-2fa.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 +#: bookwyrm/templates/search/barcode_modal.html:43 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:16 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:137 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:52 +#: bookwyrm/templates/preferences/security.html:80 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:19 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "" + +#: bookwyrm/templates/book/book.html:21 +msgid "Unable to connect to remote source." +msgstr "" + +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 +msgid "Edit Book" +msgstr "" + +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 +msgid "Click to add cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:113 +msgid "Failed to load cover" +msgstr "" + +#: bookwyrm/templates/book/book.html:124 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" + +#: bookwyrm/templates/book/book.html:235 +msgid "Add Description" +msgstr "" + +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "" + +#: bookwyrm/templates/book/book.html:258 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" + +#: bookwyrm/templates/book/book.html:272 +msgid "You have shelved this edition in:" +msgstr "" + +#: bookwyrm/templates/book/book.html:287 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "" + +#: bookwyrm/templates/book/book.html:298 +msgid "Your reading activity" +msgstr "" + +#: bookwyrm/templates/book/book.html:304 +#: bookwyrm/templates/guided_tour/book.html:56 +msgid "Add read dates" +msgstr "" + +#: bookwyrm/templates/book/book.html:312 +msgid "You don't have any reading activity for this book." +msgstr "" + +#: bookwyrm/templates/book/book.html:338 +msgid "Your reviews" +msgstr "" + +#: bookwyrm/templates/book/book.html:344 +msgid "Your comments" +msgstr "" + +#: bookwyrm/templates/book/book.html:350 +msgid "Your quotes" +msgstr "" + +#: bookwyrm/templates/book/book.html:386 +msgid "Subjects" +msgstr "" + +#: bookwyrm/templates/book/book.html:398 +msgid "Places" +msgstr "" + +#: bookwyrm/templates/book/book.html:409 +#: bookwyrm/templates/groups/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:14 +#: bookwyrm/templates/guided_tour/user_books.html:102 +#: bookwyrm/templates/guided_tour/user_profile.html:78 +#: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 +#: bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 +#: bookwyrm/templates/settings/celery.html:77 +#: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 +msgid "Lists" +msgstr "" + +#: bookwyrm/templates/book/book.html:421 +msgid "Add to list" +msgstr "" + +#: bookwyrm/templates/book/book.html:431 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 +msgid "Add" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:12 +#: bookwyrm/templates/book/book_identifiers.html:13 +msgid "Copy ISBN" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:16 +msgid "Copied ISBN!" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 +msgid "OCLC Number:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:30 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 +msgid "ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:37 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 +msgid "Audible ASIN:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 +msgid "ISFDB ID:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 +msgid "Goodreads:" +msgstr "" + +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 +msgid "Upload cover:" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 +msgid "Load cover from URL:" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/feed/suggested_books.html:67 +#: bookwyrm/templates/get_started/layout.html:27 +#: bookwyrm/templates/get_started/layout.html:60 +msgid "Close" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:43 +msgid "Failed to save book, see errors below for more information." +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:70 +msgid "Confirm Book Info" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:78 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:89 +#, python-format +msgid "Author of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:93 +#, python-format +msgid "Author of %(alt_title)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:95 +msgid "Find more information at isni.org" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:105 +msgid "This is a new author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:115 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:122 +msgid "Is this an edition of an existing work?" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:130 +msgid "This is a new work" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book.html:139 +#: bookwyrm/templates/feed/status.html:17 +#: bookwyrm/templates/guided_tour/book.html:44 +#: bookwyrm/templates/guided_tour/book.html:68 +#: bookwyrm/templates/guided_tour/book.html:91 +#: bookwyrm/templates/guided_tour/book.html:116 +#: bookwyrm/templates/guided_tour/book.html:140 +#: bookwyrm/templates/guided_tour/book.html:164 +#: bookwyrm/templates/guided_tour/book.html:188 +#: bookwyrm/templates/guided_tour/book.html:213 +#: bookwyrm/templates/guided_tour/book.html:237 +#: bookwyrm/templates/guided_tour/book.html:262 +#: bookwyrm/templates/guided_tour/book.html:290 +#: bookwyrm/templates/guided_tour/group.html:43 +#: bookwyrm/templates/guided_tour/group.html:66 +#: bookwyrm/templates/guided_tour/group.html:89 +#: bookwyrm/templates/guided_tour/group.html:108 +#: bookwyrm/templates/guided_tour/home.html:91 +#: bookwyrm/templates/guided_tour/home.html:115 +#: bookwyrm/templates/guided_tour/home.html:140 +#: bookwyrm/templates/guided_tour/home.html:165 +#: bookwyrm/templates/guided_tour/home.html:189 +#: bookwyrm/templates/guided_tour/home.html:212 +#: bookwyrm/templates/guided_tour/lists.html:47 +#: bookwyrm/templates/guided_tour/lists.html:70 +#: bookwyrm/templates/guided_tour/lists.html:94 +#: bookwyrm/templates/guided_tour/lists.html:117 +#: bookwyrm/templates/guided_tour/lists.html:136 +#: bookwyrm/templates/guided_tour/search.html:83 +#: bookwyrm/templates/guided_tour/search.html:110 +#: bookwyrm/templates/guided_tour/search.html:134 +#: bookwyrm/templates/guided_tour/search.html:155 +#: bookwyrm/templates/guided_tour/user_books.html:44 +#: bookwyrm/templates/guided_tour/user_books.html:67 +#: bookwyrm/templates/guided_tour/user_books.html:90 +#: bookwyrm/templates/guided_tour/user_books.html:118 +#: bookwyrm/templates/guided_tour/user_groups.html:44 +#: bookwyrm/templates/guided_tour/user_groups.html:67 +#: bookwyrm/templates/guided_tour/user_groups.html:91 +#: bookwyrm/templates/guided_tour/user_groups.html:110 +#: bookwyrm/templates/guided_tour/user_profile.html:43 +#: bookwyrm/templates/guided_tour/user_profile.html:66 +#: bookwyrm/templates/guided_tour/user_profile.html:89 +#: bookwyrm/templates/guided_tour/user_profile.html:112 +#: bookwyrm/templates/guided_tour/user_profile.html:135 +#: bookwyrm/templates/user/user.html:93 bookwyrm/templates/user_menu.html:18 +msgid "Back" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:26 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:36 +msgid "Sort Title:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:46 +msgid "Subtitle:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:66 +msgid "Series:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:76 +msgid "Series number:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:87 +msgid "Languages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:99 +msgid "Subjects:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:103 +msgid "Add subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:121 +msgid "Remove subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Add Another Subject" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:152 +msgid "Publication" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:157 +msgid "Publisher:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:169 +msgid "First published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:177 +msgid "Published date:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 +msgid "Authors" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:199 +#, python-format +msgid "Remove %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#, python-format +msgid "Author page for %(name)s" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:210 +msgid "Add Authors:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 +msgid "Add Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 +msgid "Jane Doe" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:223 +msgid "Add Another Author" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 +msgid "Cover" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:265 +msgid "Physical Properties" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:282 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:293 +msgid "Pages:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:304 +msgid "Book Identifiers" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 +msgid "ISBN 13:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:318 +msgid "ISBN 10:" +msgstr "" + +#: bookwyrm/templates/book/edit/edit_book_form.html:327 +msgid "Openlibrary ID:" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of %(work_title)s" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:76 +msgid "Add another edition" +msgstr "" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Language:" +msgstr "" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import.html:149 +#: bookwyrm/templates/import/import_status.html:134 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/themes.html:111 +#: bookwyrm/templates/settings/users/user_admin.html:56 +#: bookwyrm/templates/settings/users/user_info.html:35 +msgid "Status" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:108 +msgid "Actions" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:48 +#: bookwyrm/templates/settings/link_domains/link_table.html:21 +msgid "Unknown user" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:57 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:102 +msgid "No links available for this book." +msgstr "" + +#: bookwyrm/templates/book/file_links/edit_links.html:113 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "" + +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 +msgid "Continue" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:63 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published by %(publisher)s." +msgstr "" + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "" + +#: bookwyrm/templates/book/rating.html:19 +msgid "rated it" +msgstr "" + +#: bookwyrm/templates/book/series.html:11 +msgid "Series by" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +#, python-format +msgid "Book %(series_number)s" +msgstr "" + +#: bookwyrm/templates/book/series.html:28 +msgid "Unsorted Book" +msgstr "" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "" + +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 +msgid "Edit status" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:92 +msgid "Confirmation code:" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "" + +#: bookwyrm/templates/confirm_email/confirm_email.html:38 +msgid "Can't find your code?" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 +msgid "Resend confirmation link" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:15 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:24 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:30 +msgid "Resend link" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:33 +msgid "Federated community" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/user_menu.html:34 +msgid "Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "" + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 +#: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "" + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:91 +msgid "Discover" +msgstr "" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "" + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "" + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:8 +#: bookwyrm/templates/email/moderation_report/text_content.html:6 +#, python-format +msgid "@%(reporter)s has flagged a link domain for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:14 +#: bookwyrm/templates/email/moderation_report/text_content.html:10 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation." +msgstr "" + +#: bookwyrm/templates/email/moderation_report/html_content.html:21 +#: bookwyrm/templates/email/moderation_report/text_content.html:15 +msgid "View report" +msgstr "" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "" + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "" + +#: bookwyrm/templates/email/test/html_content.html:6 +#: bookwyrm/templates/email/test/text_content.html:4 +msgid "This is a test email." +msgstr "" + +#: bookwyrm/templates/email/test/subject.html:2 +msgid "Test email" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:33 +#: bookwyrm/templates/layout.html:163 bookwyrm/templates/setup/layout.html:15 +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:18 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:18 +#, python-format +msgid "%(site_name)s home page" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:40 +#: bookwyrm/templates/snippets/footer.html:12 +msgid "Contact site admin" +msgstr "" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join BookWyrm" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/user_menu.html:39 +msgid "Direct Messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "" + +#: bookwyrm/templates/feed/feed.html:56 +msgid "Alternatively, you can try enabling more status types" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:14 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + +#: bookwyrm/templates/feed/layout.html:4 +msgid "Updates" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/guided_tour/home.html:127 +#: bookwyrm/templates/layout.html:94 +msgid "Your Books" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:10 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templatetags/shelf_tags.py:14 +msgid "To Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templatetags/shelf_tags.py:15 +msgid "Currently Reading" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:95 +#: bookwyrm/templates/snippets/shelf_selector.html:46 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:39 bookwyrm/templatetags/shelf_tags.py:16 +msgid "Read" +msgstr "" + +#: bookwyrm/templates/get_started/book_preview.html:13 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templatetags/shelf_tags.py:17 +msgid "Stopped Reading" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:41 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "" + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:47 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:5 +#: bookwyrm/templates/search/layout.html:10 +#: bookwyrm/templates/search/layout.html:33 +msgid "Search" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:33 +msgid "Search results" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:24 +msgid "These are some first steps to get you started." +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:38 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:42 +msgid "Add books" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:46 +msgid "Find friends" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:52 +msgid "Skip this step" +msgstr "" + +#: bookwyrm/templates/get_started/layout.html:56 +#: bookwyrm/templates/guided_tour/group.html:101 +msgid "Finish" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:8 +msgid "You can follow users on other BookWyrm instances and federated services like Mastodon." +msgstr "" + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/guided_tour/user_groups.html:32 +#: bookwyrm/templates/user/groups.html:22 +msgid "Create group" +msgstr "" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +#: bookwyrm/templates/settings/imports/complete_import_modal.html:7 +msgid "This action cannot be un-done" +msgstr "" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "" + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:39 +#: bookwyrm/templates/user/user_preview.html:47 +msgid "Follows you" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "" + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "" + +#: bookwyrm/templates/groups/user_groups.html:35 +msgid "No groups found." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:10 +msgid "This is home page of a book. Let's see what you can do while you're here!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:11 +msgid "Book page" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:19 +#: bookwyrm/templates/guided_tour/group.html:19 +#: bookwyrm/templates/guided_tour/lists.html:22 +#: bookwyrm/templates/guided_tour/search.html:29 +#: bookwyrm/templates/guided_tour/search.html:56 +#: bookwyrm/templates/guided_tour/user_books.html:19 +#: bookwyrm/templates/guided_tour/user_groups.html:19 +#: bookwyrm/templates/guided_tour/user_profile.html:19 +msgid "End Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:26 +#: bookwyrm/templates/guided_tour/book.html:50 +#: bookwyrm/templates/guided_tour/book.html:74 +#: bookwyrm/templates/guided_tour/book.html:97 +#: bookwyrm/templates/guided_tour/book.html:122 +#: bookwyrm/templates/guided_tour/book.html:146 +#: bookwyrm/templates/guided_tour/book.html:170 +#: bookwyrm/templates/guided_tour/book.html:194 +#: bookwyrm/templates/guided_tour/book.html:219 +#: bookwyrm/templates/guided_tour/book.html:243 +#: bookwyrm/templates/guided_tour/book.html:268 +#: bookwyrm/templates/guided_tour/book.html:274 +#: bookwyrm/templates/guided_tour/group.html:26 +#: bookwyrm/templates/guided_tour/group.html:49 +#: bookwyrm/templates/guided_tour/group.html:72 +#: bookwyrm/templates/guided_tour/group.html:95 +#: bookwyrm/templates/guided_tour/home.html:74 +#: bookwyrm/templates/guided_tour/home.html:97 +#: bookwyrm/templates/guided_tour/home.html:121 +#: bookwyrm/templates/guided_tour/home.html:146 +#: bookwyrm/templates/guided_tour/home.html:171 +#: bookwyrm/templates/guided_tour/home.html:195 +#: bookwyrm/templates/guided_tour/lists.html:29 +#: bookwyrm/templates/guided_tour/lists.html:53 +#: bookwyrm/templates/guided_tour/lists.html:76 +#: bookwyrm/templates/guided_tour/lists.html:100 +#: bookwyrm/templates/guided_tour/lists.html:123 +#: bookwyrm/templates/guided_tour/search.html:36 +#: bookwyrm/templates/guided_tour/search.html:63 +#: bookwyrm/templates/guided_tour/search.html:89 +#: bookwyrm/templates/guided_tour/search.html:116 +#: bookwyrm/templates/guided_tour/search.html:140 +#: bookwyrm/templates/guided_tour/user_books.html:26 +#: bookwyrm/templates/guided_tour/user_books.html:50 +#: bookwyrm/templates/guided_tour/user_books.html:73 +#: bookwyrm/templates/guided_tour/user_books.html:96 +#: bookwyrm/templates/guided_tour/user_groups.html:26 +#: bookwyrm/templates/guided_tour/user_groups.html:50 +#: bookwyrm/templates/guided_tour/user_groups.html:73 +#: bookwyrm/templates/guided_tour/user_groups.html:97 +#: bookwyrm/templates/guided_tour/user_profile.html:26 +#: bookwyrm/templates/guided_tour/user_profile.html:49 +#: bookwyrm/templates/guided_tour/user_profile.html:72 +#: bookwyrm/templates/guided_tour/user_profile.html:95 +#: bookwyrm/templates/guided_tour/user_profile.html:118 +#: bookwyrm/templates/snippets/pagination.html:30 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:31 +msgid "This is where you can set a reading status for this book. You can press the button to move to the next stage, or use the drop down button to select the reading status you want to set." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:32 +msgid "Reading status" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "You can also manually add reading dates here. Unlike changing the reading status using the previous method, adding dates manually will not automatically add them to your Read or Reading shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:55 +msgid "Got a favourite you re-read every year? We've got you covered - you can add multiple read dates for the same book 😀" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:79 +msgid "There can be multiple editions of a book, in various formats or languages. You can choose which edition you want to use." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:80 +msgid "Other editions" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:102 +msgid "You can post a review, comment, or quote here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:103 +msgid "Share your thoughts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:127 +msgid "If you have read this book you can post a review including an optional star rating" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:128 +msgid "Post a review" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:151 +msgid "You can share your thoughts on this book generally with a simple comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:152 +msgid "Post a comment" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:175 +msgid "Just read some perfect prose? Let the world know by sharing a quote!" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:176 +msgid "Share a quote" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:199 +msgid "If your review or comment might ruin the book for someone who hasn't read it yet, you can hide your post behind a spoiler alert" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:200 +msgid "Spoiler alerts" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:224 +msgid "Choose who can see your post here. Post privacy can be Public (everyone can see), Unlisted (everyone can see, but it doesn't appear in public feeds or discovery pages), Followers (only your followers can see), or Private (only you can see)" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:225 +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:248 +msgid "Some ebooks can be downloaded for free from external sources. They will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:249 +msgid "Download links" +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:273 +msgid "Continue the tour by selecting Your books from the drop down menu." +msgstr "" + +#: bookwyrm/templates/guided_tour/book.html:296 +#: bookwyrm/templates/guided_tour/home.html:50 +#: bookwyrm/templates/guided_tour/home.html:218 +#: bookwyrm/templates/guided_tour/search.html:161 +#: bookwyrm/templates/guided_tour/user_books.html:124 +#: bookwyrm/templates/guided_tour/user_groups.html:116 +#: bookwyrm/templates/guided_tour/user_profile.html:141 +msgid "Ok" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:10 +msgid "Welcome to the page for your group! This is where you can add and remove users, create user-curated lists, and edit the group details." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:11 +msgid "Your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:31 +msgid "Use this search box to find users to join your group. Currently users must be members of the same Bookwyrm instance and be invited by the group owner." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:32 +msgid "Find users" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:54 +msgid "Your group members will appear here. The group owner is marked with a star symbol." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:55 +msgid "Group members" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:77 +msgid "As well as creating lists from the Lists page, you can create a group-curated list here on the group's homepage. Any member of the group can create a list curated by group members." +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:78 +msgid "Group lists" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:100 +msgid "Congratulations, you've finished the tour! Now you know the basics, but there is lots more to explore on your own. Happy reading!" +msgstr "" + +#: bookwyrm/templates/guided_tour/group.html:115 +msgid "End tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:16 +msgid "Welcome to Bookwyrm!

    Would you like to take the guided tour to help you get started?" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:17 +#: bookwyrm/templates/guided_tour/home.html:39 +#: bookwyrm/templates/snippets/footer.html:20 +msgid "Guided Tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:25 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:36 +msgid "No thanks" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:33 +msgid "Yes please!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:38 +msgid "If you ever change your mind, just click on the Guided Tour link to start your tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:62 +msgid "Search for books, users, or lists using this search box." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:63 +msgid "Search box" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:79 +msgid "Search book records by scanning an ISBN barcode using your device's camera - great when you're in the bookstore or library!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:80 +msgid "Barcode reader" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:102 +msgid "Use the Lists, Discover, and Your Books links to discover reading suggestions and the latest happenings on this server, or to see your catalogued books!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:103 +msgid "Navigation Bar" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:126 +msgid "Books on your reading status shelves will be shown here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:151 +msgid "Updates from people you are following will appear in your Home timeline.

    The Books tab shows activity from anyone, related to your books." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:152 +msgid "Timelines" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:176 +msgid "The bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:177 +#: bookwyrm/templates/layout.html:77 bookwyrm/templates/layout.html:107 +#: bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Your profile, user directory, direct messages, and settings can be accessed by clicking on your name in the menu here." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:200 +msgid "Try selecting Profile from the drop down menu to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/home.html:201 +msgid "Profile and settings menu" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "This is the lists page where you can discover book lists created by any user. A List is a collection of books, similar to a shelf." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:13 +msgid "Shelves are for organising books for yourself, whereas Lists are generally for sharing with others." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Let's see how to create a new list." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:34 +msgid "Click the Create List button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:35 +#: bookwyrm/templates/guided_tour/lists.html:59 +msgid "Creating a new list" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:58 +msgid "You must give your list a name and can optionally give it a description to help other people understand what your list is about." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:81 +msgid "Choose who can see your list here. List privacy options work just like we saw when posting book reviews. This is a common pattern throughout Bookwyrm." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:82 +msgid "List privacy" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:105 +msgid "You can also decide how your list is to be curated - only by you, by anyone, or by a group." +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:106 +msgid "List curation" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:128 +msgid "Next in our tour we will explore Groups!" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:129 +msgid "Next: Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/lists.html:143 +msgid "Take me there" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:16 +msgid "If the book you are looking for is available on a remote catalogue such as Open Library, click on Import book." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:17 +#: bookwyrm/templates/guided_tour/search.html:44 +msgid "Searching" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:43 +msgid "If the book you are looking for is already on this Bookwyrm instance, you can click on the title to go to the book's page." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:71 +msgid "If the book you are looking for is not listed, try loading more records from other sources like Open Library or Inventaire." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:72 +msgid "Load more records" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:98 +msgid "If your book is not in the results, try adjusting your search terms." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:99 +msgid "Search again" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:121 +msgid "If you still can't find your book, you can add a record manually." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:122 +msgid "Add a record manually" +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:147 +msgid "Import, manually add, or view an existing book to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/search.html:148 +msgid "Continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:10 +msgid "This is the page where your books are listed, organised into shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:11 +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:31 +msgid "To Read, Currently Reading, Read, and Stopped Reading are default shelves. When you change the reading status of a book it will automatically be moved to the matching shelf. A book can only be on one default shelf at a time." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:32 +msgid "Reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:55 +msgid "You can create additional custom shelves to organise your books. A book on a custom shelf can be on any number of other shelves simultaneously, including one of the default reading status shelves" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:56 +msgid "Adding custom shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:78 +msgid "If you have an export file from another service like Goodreads or LibraryThing, you can import it here." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:79 +msgid "Import from another service" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Now that we've explored book shelves, let's take a look at a related concept: book lists!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_books.html:101 +msgid "Click on the Lists link here to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:10 +msgid "You can create or join a group with other users. Groups can share group-curated book lists, and in future will be able to do other things." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:11 +#: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 +#: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Let's create a new group!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:31 +msgid "Click the Create group button, then Next to continue the tour" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:55 +msgid "Give your group a name and describe what it is about. You can make user groups for any purpose - a reading group, a bunch of friends, whatever!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:56 +msgid "Creating a group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:78 +msgid "Groups have privacy settings just like posts and lists, except that group privacy cannot be Followers." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:79 +msgid "Group visibility" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Once you're happy with how everything is set up, click the Save button to create your new group." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:102 +msgid "Create and save a group to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_groups.html:103 +msgid "Save your group" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:10 +msgid "This is your user profile. All your latest activities will be listed here. Other Bookwyrm users can see parts of this page too - what they can see depends on your privacy settings." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:11 +#: bookwyrm/templates/user/layout.html:20 bookwyrm/templates/user/user.html:14 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:31 +msgid "This tab shows everything you have read towards your annual reading goal, or allows you to set one. You don't have to set a reading goal if that's not your thing!" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:32 +#: bookwyrm/templates/user/goal.html:6 bookwyrm/templates/user/layout.html:89 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:54 +msgid "Here you can see your groups, or create a new one. A group brings together Bookwyrm users and allows them to curate lists together." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:77 +msgid "You can see your lists, or create a new one, here. A list is a collection of books that have something in common." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:100 +msgid "The Books tab shows your book shelves. We'll explore this later in the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Now you understand the basics of your profile page, let's add a book to your shelves." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:123 +msgid "Search for a title or author to continue the tour." +msgstr "" + +#: bookwyrm/templates/guided_tour/user_profile.html:124 +msgid "Find a book" +msgstr "" + +#: bookwyrm/templates/hashtag.html:12 +#, python-format +msgid "See tagged statuses in the local %(site_name)s community" +msgstr "" + +#: bookwyrm/templates/hashtag.html:25 +msgid "No activities for this hashtag yet!" +msgstr "" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:6 +#: bookwyrm/templates/preferences/layout.html:43 +msgid "Import Book List" +msgstr "" + +#: bookwyrm/templates/import/import.html:12 +msgid "Not a valid CSV file" +msgstr "" + +#: bookwyrm/templates/import/import.html:20 +#, python-format +msgid "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s day." +msgid_plural "Currently, you are allowed to import %(display_size)s books every %(import_limit_reset)s days." +msgstr[0] "" + +#: bookwyrm/templates/import/import.html:26 +#, python-format +msgid "You have %(display_left)s left." +msgstr "" + +#: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 +#, python-format +msgid "On average, recent imports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 +#, python-format +msgid "On average, recent imports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/import/import.html:52 +msgid "Data source:" +msgstr "" + +#: bookwyrm/templates/import/import.html:58 +msgid "Goodreads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:61 +msgid "Storygraph (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:64 +msgid "LibraryThing (TSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:67 +msgid "OpenLibrary (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 +msgid "Calibre (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 +msgid "Data file:" +msgstr "" + +#: bookwyrm/templates/import/import.html:99 +msgid "Include reviews" +msgstr "" + +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" + +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:78 +msgid "Import" +msgstr "" + +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 +msgid "You've reached the import limit." +msgstr "" + +#: bookwyrm/templates/import/import.html:128 +#: bookwyrm/templates/import/import_user.html:27 +msgid "Imports are temporarily disabled; thank you for your patience." +msgstr "" + +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 +msgid "Recent Imports" +msgstr "" + +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 +msgid "Date Created" +msgstr "" + +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 +msgid "Last Updated" +msgstr "" + +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 +msgid "Items" +msgstr "" + +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 +msgid "No recent imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:22 +#: bookwyrm/templates/settings/celery.html:45 +#: bookwyrm/templates/settings/imports/imports.html:6 +#: bookwyrm/templates/settings/imports/imports.html:9 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Imports" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 +msgid "Import started:" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 +msgid "In progress" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 +msgid "Refresh" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:72 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 +msgid "Stop import" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:78 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "" + +#: bookwyrm/templates/import/import_status.html:83 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "" + +#: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 +msgid "View and troubleshoot failed items" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:107 +msgid "Row" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:110 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 +msgid "Title" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 +msgid "ISBN" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Openlibrary key" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:121 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 +msgid "Author" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:124 +msgid "Shelf" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:142 +msgid "Import preview unavailable." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:150 +msgid "No items currently need review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "View imported review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 +msgid "Imported" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:206 +msgid "Needs manual review" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:219 +msgid "Retry" +msgstr "" + +#: bookwyrm/templates/import/import_status.html:237 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "" + +#: bookwyrm/templates/import/import_status.html:239 +msgid "Update import" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:5 +#: bookwyrm/templates/import/import_user.html:6 +#: bookwyrm/templates/preferences/layout.html:51 +msgid "Import BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:13 +msgid "Not a valid import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:18 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set this account as an alias of the one you are migrating from, or move that account to this one, before you import your user data." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:32 +#, python-format +msgid "Currently you are allowed to import one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:33 +#, python-format +msgid "You will next be able to import a user file at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:56 +msgid "Step 1:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:58 +msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:73 +msgid "Step 2:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:75 +msgid "Deselect any checkboxes for data you do not wish to include in your import." +msgstr "" + +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 +#: bookwyrm/templates/user/relationships/followers.html:18 +#: bookwyrm/templates/user/relationships/following.html:18 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:89 +msgid "Overwrites display name, summary, and avatar" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:95 +msgid "User settings" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:98 +msgid "Overwrites:" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:101 +msgid "Whether manual approval is required for other users to follow your account" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:104 +msgid "Whether following/followers are shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:107 +msgid "Whether your reading goal is shown on your profile" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:110 +msgid "Whether you see user follow suggestions" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:113 +msgid "Whether your account is suggested to others" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:116 +msgid "Your timezone" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:119 +msgid "Your default post privacy setting" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:127 +msgid "Followers and following" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:131 +msgid "User blocks" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 +msgid "Reading goals" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:141 +msgid "Overwrites reading goals for all years listed in the import file" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 +msgid "Shelves" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 +msgid "Reading history" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 +msgid "Book reviews" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:157 +msgid "Comments about books" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:160 +msgid "Book lists" +msgstr "" + +#: bookwyrm/templates/import/import_user.html:163 +msgid "Saved lists" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:7 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 +msgid "Failed items" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 +msgid "Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "" + +#: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 +msgid "Create an Account" +msgstr "" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "" + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "" + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "" + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "" + +#: bookwyrm/templates/landing/login.html:21 +#: bookwyrm/templates/landing/reactivate.html:17 +#: bookwyrm/templates/layout.html:128 bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:28 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/landing/reactivate.html:24 +#: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/preferences/security.html:94 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "" + +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "" + +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 +msgid "More about this site" +msgstr "" + +#: bookwyrm/templates/landing/password_reset.html:43 +#: bookwyrm/templates/preferences/change_password.html:33 +#: bookwyrm/templates/preferences/delete_user.html:35 +msgid "Confirm password:" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +#, python-format +msgid "A password reset link will be sent to %(email)s if there is an account using that email address." +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:20 +msgid "A link to reset your password will be sent to your email address" +msgstr "" + +#: bookwyrm/templates/landing/password_reset_request.html:34 +msgid "Reset password" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:4 +#: bookwyrm/templates/landing/reactivate.html:7 +msgid "Reactivate Account" +msgstr "" + +#: bookwyrm/templates/landing/reactivate.html:34 +msgid "Reactivate account" +msgstr "" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "" + +#: bookwyrm/templates/layout.html:39 +msgid "Search for a book, author, user, or list" +msgstr "" + +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 +msgid "Scan Barcode" +msgstr "" + +#: bookwyrm/templates/layout.html:69 +msgid "Main navigation menu" +msgstr "" + +#: bookwyrm/templates/layout.html:134 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "" + +#: bookwyrm/templates/layout.html:136 +msgid "Show/Hide password" +msgstr "" + +#: bookwyrm/templates/layout.html:150 +msgid "Join" +msgstr "" + +#: bookwyrm/templates/layout.html:196 +msgid "Successfully posted status" +msgstr "" + +#: bookwyrm/templates/layout.html:197 +msgid "Error posting status" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:23 +msgid "Edit List" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:20 +#, python-format +msgid "on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/embed-list.html:29 +msgid "This list is currently empty" +msgstr "" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +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:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "" + +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty." +msgstr "" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_follower_button.html:4 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "" + +#: bookwyrm/templates/lists/list_items.html:50 +msgid "No lists found." +msgstr "" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:14 +msgid "Your Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "" + +#: bookwyrm/templates/moved.html:27 +#, python-format +msgid "You have moved your account to %(username)s" +msgstr "" + +#: bookwyrm/templates/moved.html:32 +msgid "You can undo the move to restore full functionality, but some followers may have already unfollowed this account." +msgstr "" + +#: bookwyrm/templates/moved.html:42 +msgid "Undo move" +msgstr "" + +#: bookwyrm/templates/moved.html:46 bookwyrm/templates/user_menu.html:77 +msgid "Log out" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:18 +#, python-format +msgid "%(related_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/accept.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others accepted your invitation to join group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:33 +#, python-format +msgid "%(related_user)s added %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:39 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:47 +#, python-format +msgid "%(related_user)s added %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:54 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s and %(second_book_title)s to your list \"%(list_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:66 +#, python-format +msgid "%(related_user)s added a book to one of your lists" +msgstr "" + +#: bookwyrm/templates/notifications/items/add.html:72 +#, python-format +msgid "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s added %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/add.html:88 +#, python-format +msgid "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other book to your list \"%(list_name)s\"" +msgid_plural "%(related_user)s suggested adding %(book_title)s, %(second_book_title)s, and %(display_count)s other books to your list \"%(list_name)s\"" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/boost.html:21 +#, python-format +msgid "%(related_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:44 +#, python-format +msgid "%(related_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:67 +#, python-format +msgid "%(related_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:90 +#, python-format +msgid "%(related_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/boost.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others boosted your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:21 +#, python-format +msgid "%(related_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:27 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:44 +#, python-format +msgid "%(related_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:50 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:59 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:67 +#, python-format +msgid "%(related_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:73 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:82 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:90 +#, python-format +msgid "%(related_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:96 +#, python-format +msgid "%(related_user)s and %(second_user)s liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/fav.html:105 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others liked your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:16 +#, python-format +msgid "%(related_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:20 +#, python-format +msgid "%(related_user)s and %(second_user)s followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow.html:25 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others followed you" +msgstr "" + +#: bookwyrm/templates/notifications/items/follow_request.html:15 +#, python-format +msgid "%(related_user)s sent you a follow request" +msgstr "" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "" + +#: bookwyrm/templates/notifications/items/invite.html:16 +#, python-format +msgid "%(related_user)s invited you to join the group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/invite_request.html:15 +#, python-format +msgid "New invite request awaiting response" +msgid_plural "%(display_count)s new invite requests awaiting response" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:18 +#, python-format +msgid "%(related_user)s has left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:26 +#, python-format +msgid "%(related_user)s and %(second_user)s have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/leave.html:36 +#, python-format +msgid "%(related_user)s and %(other_user_display_count)s others have left your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/link_domain.html:15 +#, python-format +msgid "A new link domain needs review" +msgid_plural "%(display_count)s new link domains need review" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "%(related_user)s mentioned you in a review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "%(related_user)s mentioned you in a comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "%(related_user)s mentioned you in a quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "%(related_user)s mentioned you in a status" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:18 +#, python-format +msgid "%(related_user)s has moved to %(username)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/move_user.html:25 +#, python-format +msgid "%(related_user)s has undone their move" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "%(related_user)s replied to your review of %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "%(related_user)s replied to your comment on %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "%(related_user)s replied to your quote from %(book_title)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "%(related_user)s replied to your status" +msgstr "" + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation" +msgid_plural "%(display_count)s new reports need moderation" +msgstr[0] "" + +#: bookwyrm/templates/notifications/items/status_preview.html:4 +#: bookwyrm/templates/snippets/status/content_status.html:62 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "" + +#: bookwyrm/templates/notifications/items/user_export.html:14 +#, python-format +msgid "Your user export is ready." +msgstr "" + +#: bookwyrm/templates/notifications/items/user_import.html:14 +#, python-format +msgid "Your user import is complete." +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:19 +msgid "Delete notifications" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:31 +msgid "All" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:35 +msgid "Mentions" +msgstr "" + +#: bookwyrm/templates/notifications/notifications_page.html:47 +msgid "You're all caught up!" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:7 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:35 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "User handle to follow from:" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow.html:44 +msgid "Follow!" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:15 +msgid "Follow on Fediverse" +msgstr "" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:19 +msgid "This link opens in a pop-up window" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "" + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "" + +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:25 +msgid "Enter the username for the account you want to add as an alias e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:30 +#: bookwyrm/templates/preferences/move_user.html:35 +msgid "Confirm your password:" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:39 +#: bookwyrm/templates/preferences/layout.html:28 +msgid "Aliases" +msgstr "" + +#: bookwyrm/templates/preferences/alias_user.html:49 +msgid "Remove alias" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:62 +msgid "Blocked Users" +msgstr "" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:37 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:15 +msgid "Successfully changed password" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:22 +msgid "Current password:" +msgstr "" + +#: bookwyrm/templates/preferences/change_password.html:28 +msgid "New password:" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:40 +#: bookwyrm/templates/preferences/layout.html:36 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Deactivate account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:15 +msgid "Your account will be hidden. You can log back in at any time to re-activate your account." +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Deactivate Account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:26 +msgid "Permanently delete account" +msgstr "" + +#: bookwyrm/templates/preferences/delete_user.html:29 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:12 +msgid "Disable Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:14 +msgid "Disabling 2FA will allow anyone with your username and password to log in to your account." +msgstr "" + +#: bookwyrm/templates/preferences/disable-2fa.html:20 +msgid "Turn off 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:8 +#: bookwyrm/templates/user_menu.html:29 +msgid "Profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:89 +#: bookwyrm/templates/setup/config.html:85 +msgid "Display" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:118 +msgid "Privacy" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 +msgid "Show this account in suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:91 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Preferred Timezone: " +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:107 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Manually approve followers" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:129 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:134 +msgid "Default post privacy:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:142 +#, python-format +msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 +#: bookwyrm/templates/preferences/layout.html:55 +msgid "Export BookWyrm Account" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:15 +msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 +msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:45 +msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 +#, python-format +msgid "You will be able to create a new export file at %(next_available)s" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 +msgid "Create user export file" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:95 +msgid "Recent Exports" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:97 +msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 +msgid "Date" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:116 +msgid "Size" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:160 +msgid "Download your export" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:4 +#: bookwyrm/templates/preferences/export.html:7 +#: bookwyrm/templates/preferences/layout.html:47 +msgid "Export Book List" +msgstr "" + +#: bookwyrm/templates/preferences/export.html:13 +msgid "Your CSV export file will include all the books on your shelves, books you have reviewed, and books with reading activity.
    Use this to import into a service like Goodreads." +msgstr "" + +#: bookwyrm/templates/preferences/export.html:20 +msgid "Download file" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:32 +msgid "Move Account" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:39 +msgid "Data" +msgstr "" + +#: bookwyrm/templates/preferences/layout.html:58 +msgid "Relationships" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:12 +msgid "Migrate account to another server" +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:16 +msgid "Moving your account will notify all your followers and direct them to follow the new account." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:19 +#, python-format +msgid "\n" +" %(user)s will be marked as moved and will not be discoverable or usable unless you undo the move.\n" +" " +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:25 +msgid "Remember to add this user as an alias of the target account before you try to move." +msgstr "" + +#: bookwyrm/templates/preferences/move_user.html:30 +msgid "Enter the username for the account you want to move to e.g. user@example.com :" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/stop.html:5 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:24 +msgid "Started reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 +msgid "Progress" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_form.html:25 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:16 +msgid "stopped" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:27 +msgid "Show all updates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:43 +msgid "Delete this progress update" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:55 +msgid "started" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:62 +msgid "Edit read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_list.html:70 +msgid "Delete these read dates" +msgstr "" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:21 +msgid "Requesting camera..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:22 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:27 +msgid "Could not access camera" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:31 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:32 +msgid "Align your book's barcode with the camera." +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:36 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "" + +#: bookwyrm/templates/search/barcode_modal.html:37 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "" + +#: bookwyrm/templates/search/book.html:25 +#, python-format +msgid "%(formatted_review_count)s review" +msgid_plural "%(formatted_review_count)s reviews" +msgstr[0] "" + +#: bookwyrm/templates/search/book.html:34 +#, python-format +msgid "(published %(pub_year)s)" +msgstr "" + +#: bookwyrm/templates/search/book.html:50 +msgid "Results from" +msgstr "" + +#: bookwyrm/templates/search/book.html:89 +msgid "Import book" +msgstr "" + +#: bookwyrm/templates/search/book.html:113 +msgid "Load results from other catalogues" +msgstr "" + +#: bookwyrm/templates/search/book.html:117 +msgid "Manually add book" +msgstr "" + +#: bookwyrm/templates/search/book.html:122 +msgid "Log in to import or add books." +msgstr "" + +#: bookwyrm/templates/search/layout.html:17 +msgid "Search query" +msgstr "" + +#: bookwyrm/templates/search/layout.html:20 +msgid "Search type" +msgstr "" + +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:52 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "" + +#: bookwyrm/templates/search/layout.html:63 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "" + +#: bookwyrm/templates/search/layout.html:65 +#, python-format +msgid "%(result_count)s result found" +msgid_plural "%(result_count)s results found" +msgstr[0] "" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:111 +msgid "Announcements" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 +msgid "Start date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 +msgid "End date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Date added" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +msgid "Auto-moderation rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 +msgid "Schedule:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 +msgid "Last run:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 +msgid "Total run count:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 +msgid "Enabled:" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 +msgid "Delete schedule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 +msgid "Run now" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 +msgid "Last run date will not be updated" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 +msgid "Schedule scan" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:6 +#: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 +msgid "Celery Status" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:14 +msgid "You can set up monitoring to check if Celery is running by querying:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:22 +msgid "Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:26 +msgid "Streams" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:32 +msgid "Broadcast" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:38 +msgid "Inbox" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:51 +msgid "Import triggered" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 +msgid "Connectors" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:64 +#: bookwyrm/templates/settings/site.html:91 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:70 +msgid "Suggested Users" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:83 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:89 +msgid "Misc" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:96 +msgid "Low priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:102 +msgid "Medium priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:108 +msgid "High priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:118 +msgid "Could not connect to Redis broker" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:126 +msgid "Active Tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:131 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 +msgid "ID" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:132 +msgid "Task name" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:133 +msgid "Run time" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 +msgid "Priority" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:139 +msgid "No active tasks" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:157 +msgid "Workers" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:162 +msgid "Uptime:" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:172 +msgid "Could not connect to Celery" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:178 +#: bookwyrm/templates/settings/celery.html:201 +msgid "Clear Queues" +msgstr "" + +#: bookwyrm/templates/settings/celery.html:182 +msgid "Clearing queues can cause serious problems including data loss! Only play with this if you really know what you're doing. You must shut down the Celery worker before you do this." +msgstr "" + +#: bookwyrm/templates/settings/celery.html:208 +msgid "Errors" +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 +msgid "Total users" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 +msgid "Instance Activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +msgid "Interval:" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "Days" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:8 +#, python-format +msgid "Your outgoing email address, %(email_sender)s, may be misconfigured." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/email_config.html:11 +msgid "Check the EMAIL_SENDER_NAME and EMAIL_SENDER_DOMAIN in your .env file." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/invites.html:9 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_conduct.html:8 +msgid "Your instance is missing a code of conduct." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/missing_privacy.html:8 +msgid "Your instance is missing a privacy policy." +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/reports.html:9 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" + +#: bookwyrm/templates/settings/dashboard/warnings/update_version.html:8 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:6 +#: bookwyrm/templates/settings/email_config.html:8 +#: bookwyrm/templates/settings/layout.html:94 +msgid "Email Configuration" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:16 +msgid "Error sending test email:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:24 +msgid "Successfully sent test email." +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:32 +#: bookwyrm/templates/setup/config.html:96 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:39 +msgid "Email backend:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:46 +msgid "Host:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:53 +msgid "Host user:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:60 +msgid "Port:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:67 +msgid "Use TLS:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:74 +msgid "Use SSL:" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:83 +#, python-format +msgid "Send test email to %(email)s" +msgstr "" + +#: bookwyrm/templates/settings/email_config.html:90 +msgid "Send test email" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:113 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:107 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:79 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:60 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:62 +msgid "Expects a json file in the format provided by FediBlock, with a list of entries that have instance and url fields. For example:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:44 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:48 +#: bookwyrm/templates/settings/federation/software_filter.html:5 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:70 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_import_modal.html:4 +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 +msgid "Stop import?" +msgstr "" + +#: bookwyrm/templates/settings/imports/complete_user_import_modal.html:7 +msgid "This action will stop the user import before it is complete and cannot be un-done" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:19 +msgid "Disable starting new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:30 +msgid "This is only intended to be used when things have gone very wrong with imports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:31 +msgid "While imports are disabled, users will not be allowed to start new imports, but existing imports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:32 +msgid "This setting prevents both book imports and user imports." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:37 +msgid "Disable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:51 +msgid "Users are currently unable to start new imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:56 +msgid "Enable imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:64 +msgid "Limit the amount of imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:75 +msgid "Some users might try to import a large number of books, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:76 +#: bookwyrm/templates/settings/imports/imports.html:135 +msgid "Set the value to 0 to not enforce any limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:79 +msgid "Set import limit to" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:81 +msgid "books every" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:83 +msgid "days." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:87 +msgid "Set limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 +msgid "Limit how often users can import and export" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:134 +msgid "Some users might try to run user imports or exports very frequently, which you want to limit." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:140 +msgid "hours" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:144 +msgid "Change limit" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 +msgid "User" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 +msgid "Date Updated" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:214 +msgid "Pending items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:217 +msgid "Successful items" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 +msgid "No matching imports found." +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:55 +msgid "Invites" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "System" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 +msgid "Instance Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:115 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 +#: bookwyrm/templates/settings/registration.html:4 +#: bookwyrm/templates/settings/registration.html:6 +#: bookwyrm/templates/settings/registration_limited.html:4 +#: bookwyrm/templates/settings/registration_limited.html:6 +msgid "Registration" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:130 +#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/link_table.html:43 +msgid "No links available for this domain." +msgstr "" + +#: bookwyrm/templates/settings/registration.html:13 +#: bookwyrm/templates/settings/registration_limited.html:13 +#: bookwyrm/templates/settings/site.html:21 +msgid "Settings saved" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:22 +#: bookwyrm/templates/settings/registration_limited.html:22 +#: bookwyrm/templates/settings/site.html:30 +msgid "Unable to save settings" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:38 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:43 +msgid "Default access level:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:61 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:63 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:68 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:72 +#: bookwyrm/templates/settings/registration_limited.html:42 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:80 +#: bookwyrm/templates/settings/registration_limited.html:50 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:85 +#: bookwyrm/templates/settings/registration_limited.html:55 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/registration.html:90 +#: bookwyrm/templates/settings/registration_limited.html:67 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/registration_limited.html:29 +msgid "Registration is enabled on this instance" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:13 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:25 +msgid "Message reporter" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:29 +msgid "Update on your report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:37 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:39 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:66 +msgid "Moderation Activity" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:73 +#, python-format +msgid "%(user)s opened this report" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:86 +#, python-format +msgid "%(user)s commented on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:90 +#, python-format +msgid "%(user)s took an action on this report:" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:13 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:17 +#, python-format +msgid "Report #%(report_id)s: Link domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_header.html:24 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:19 +msgid "Approve domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_links_table.html:26 +msgid "Block domain" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:43 +msgid "Instance Info" +msgstr "" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:122 +msgid "Footer Content" +msgstr "" + +#: bookwyrm/templates/settings/site.html:46 +msgid "Instance Name:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:50 +msgid "Tagline:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:54 +msgid "Instance description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:58 +msgid "Short description:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "" + +#: bookwyrm/templates/settings/site.html:63 +msgid "Code of conduct:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:67 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:72 +msgid "Impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:77 +msgid "Include impressum:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:94 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:102 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:110 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:129 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:133 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:137 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "One of your themes appears to be broken. Selecting this theme will make the application unusable." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:28 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:38 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:41 +msgid "Run ./bw-dev compile_themes and ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:44 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:51 +#: bookwyrm/templates/settings/themes.html:91 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:57 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:72 +#: bookwyrm/templates/settings/themes.html:102 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:82 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:105 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:123 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:134 +msgid "Test theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:143 +msgid "Broken theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:152 +msgid "Loaded successfully" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:52 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Deleted users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:61 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:84 +#: bookwyrm/templates/settings/users/user_info.html:127 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "This account is the instance actor for signing HTTP requests." +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:30 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:42 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:55 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:65 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:71 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:83 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:102 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:124 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:6 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:9 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:15 +msgid "This is the instance admin actor" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:18 +msgid "You must not delete or disable this account as it is critical to the functioning of your server. This actor signs outgoing GET requests to smooth interaction with secure ActivityPub servers." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:19 +msgid "This account is not discoverable by ordinary users and does not have a profile page." +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:35 +msgid "Activate user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:41 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:46 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 +msgid "Settings" +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:75 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:89 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:103 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:110 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:122 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:125 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:139 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:143 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:21 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:24 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:79 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:71 +msgid "Import Books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" + +#: bookwyrm/templates/shelf/shelf.html:110 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:124 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 +msgid "Until" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" + +#: bookwyrm/templates/snippets/book_cover.html:63 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 +msgid "Progress:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:53 +#: bookwyrm/templates/snippets/progress_field.html:18 +msgid "pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:21 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:68 +msgid "to" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:16 +msgid "Documentation" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:42 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/footer.html:49 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:38 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:20 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/move_user_buttons.html:10 +msgid "Follow at new account" +msgstr "" + +#: bookwyrm/templates/snippets/moved_user_notice.html:7 +#, python-format +msgid "%(user)s has moved to %(moved_to_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:13 +msgid "Newer" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:15 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:28 +msgid "Older" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:61 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:6 +#, python-format +msgid "Stop Reading \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/stop_reading_modal.html:32 +#: bookwyrm/templates/snippets/shelf_selector.html:53 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:21 +msgid "Stopped reading" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:66 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:33 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:60 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:38 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:55 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:81 +#: bookwyrm/templates/snippets/shelf_selector.html:95 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:73 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:48 +msgid "Stop reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:40 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:69 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "(Page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:91 +#, python-format +msgid "%(endpage)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid "(%(percent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:93 +#, python-format +msgid " - %(endpercent)s%%" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:116 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:137 +msgid "Hide status" +msgstr "" + +#: bookwyrm/templates/snippets/status/header.html:45 +#, python-format +msgid "edited %(date)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:10 +#, python-format +msgid "stopped reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/stopped_reading.html:17 +#, python-format +msgid "stopped reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:5 +msgid "Moved" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:12 +msgid "Deleted" +msgstr "" + +#: bookwyrm/templates/snippets/user_active_tag.html:15 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:29 +msgid "2FA check" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:37 +msgid "Enter the code from your authenticator app:" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_login.html:41 +msgid "Confirm and Log In" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:29 +msgid "2FA is available" +msgstr "" + +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:34 +msgid "You can secure your account by setting up two factor authentication in your user preferences. This will require a one-time code from your phone in addition to your password each time you log in." +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:16 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:32 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:44 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:46 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:14 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:16 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:59 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:83 +#: bookwyrm/templates/user/reviews_comments.html:6 +#: bookwyrm/templates/user/reviews_comments.html:12 +msgid "Reviews and Comments" +msgstr "" + +#: bookwyrm/templates/user/lists.html:16 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:22 bookwyrm/templates/user/lists.html:34 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/moved.html:25 +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:36 +#, python-format +msgid "%(username)s has no followers" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/following.html:11 +#: bookwyrm/templates/user/relationships/following.html:21 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "" + +#: bookwyrm/templates/user/relationships/following.html:30 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "" + +#: bookwyrm/templates/user/reviews_comments.html:26 +msgid "No reviews or comments yet!" +msgstr "" + +#: bookwyrm/templates/user/user.html:20 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:42 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:61 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:76 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:82 +msgid "Show RSS Options" +msgstr "" + +#: bookwyrm/templates/user/user.html:88 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:104 +msgid "Complete feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:109 +msgid "Reviews only" +msgstr "" + +#: bookwyrm/templates/user/user.html:114 +msgid "Quotes only" +msgstr "" + +#: bookwyrm/templates/user/user.html:119 +msgid "Comments only" +msgstr "" + +#: bookwyrm/templates/user/user.html:135 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(display_count)s follower" +msgid_plural "%(display_count)s followers" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:31 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:45 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" + +#: bookwyrm/templates/user/user_preview.html:49 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:14 +#, python-format +msgid "Book List: %(name)s" +msgstr "" + +#: bookwyrm/templatetags/list_page_tags.py:22 +#, python-format +msgid "%(num)d book - by %(user)s" +msgid_plural "%(num)d books - by %(user)s" +msgstr[0] "" + +#: bookwyrm/templatetags/utilities.py:49 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" + diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo index 1d1227f809..fde362a05e 100644 Binary files a/locale/zh_Hans/LC_MESSAGES/django.mo and b/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po index c86fcef7ae..1cd3ff90f5 100644 --- a/locale/zh_Hans/LC_MESSAGES/django.po +++ b/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-03-17 12:38\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Simplified\n" "Language: zh\n" @@ -33,56 +33,55 @@ msgstr "一个月" msgid "Does Not Expire" msgstr "永不失效" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} 次使用" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "不受限" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "密码错误" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "两次输入的密码不一致" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "密码错误" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "读完日期不得早于开始日期。" -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "阅读完成日期不能早于开始日期。" -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "阅读停止的日期不能是将来的日期" -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "读完日期不能是未来日期" -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "用户名或密码不正确" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "使用此用户名的用户已存在" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "已经存在使用该邮箱的用户。" -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "验证码错误" @@ -90,7 +89,7 @@ msgstr "验证码错误" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "此域名已被屏蔽。如果您认为这是一个错误,请联系您的管理员。" -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "此文件类型的链接已经被添加到这本书。如果不可见,域名仍在等待处理中。" @@ -102,8 +101,8 @@ msgstr "列表顺序" msgid "Book Title" msgstr "书名" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "评价" @@ -145,8 +144,8 @@ msgstr "危险" msgid "Automatically generated report" msgstr "自动生成的举报" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "仲裁员删除" msgid "Domain block" msgstr "域名屏蔽" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "有声书籍" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "电子书" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "图像小说" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "精装" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "平装" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "评论" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "书评" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "关注" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "屏蔽" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "跨站" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s 不是有效的 remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s 不是有效的用户名" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "用户名" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "已经存在使用该用户名的用户。" -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "已经存在使用该用户名的用户。" msgid "Public" msgstr "公开" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "公开" msgid "Unlisted" msgstr "不公开" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "不公开" msgid "Followers" msgstr "关注者" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "关注者" msgid "Private" msgstr "私密" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "活跃" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "已完成" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "已停止" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "导入停止" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "加载书籍时出错" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "找不到匹配的书" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "免费" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "可购买" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "可借阅" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "已通过" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "评论" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "已解决的报告" @@ -363,123 +429,158 @@ msgstr "已批准的域名" msgid "Deleted item" msgstr "已删除的项目" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "书评" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "评论" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "引用" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "所有其它内容" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "主页时间线" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "主页" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "书目时间线" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "书目" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English(英语)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (加泰罗尼亚语)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch(德语)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (世界语)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español(西班牙语)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (巴斯克语)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego(加利西亚语)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano(意大利语)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "한국어 (韩语)" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (Finnish/芬兰语)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français(法语)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių(立陶宛语)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (荷兰语)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk(挪威语)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (波兰语)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil(巴西葡萄牙语)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu(欧洲葡萄牙语)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (罗马尼亚语)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska(瑞典语)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "Українська (乌克兰语)" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文(繁体中文)" @@ -517,11 +618,8 @@ msgid "The file you are uploading is too large." msgstr "您要上传的文件太大。" #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " -msgstr "\n" -"您可以尝试使用更小的文件,或询问 BookWyrm 服务器管理员增加 DATA_UPLOAD_MAX_MEMORY_SIZE 的值。 " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." +msgstr "" #: bookwyrm/templates/500.html:4 msgid "Oops!" @@ -617,7 +715,7 @@ msgid "Statuses posted:" msgstr "发布的状态:" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "软件版本:" @@ -725,7 +823,7 @@ msgstr "TA 今年阅读最短的…" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -803,44 +901,48 @@ msgid "Wikipedia" msgstr "维基百科" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "网站" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "查看 ISNI 记录" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "在 ISFDB 查看" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "加载数据" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "在 OpenLibrary 查看" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "在 Inventaire 查看" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "在 LibraryThing 查看" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "在 Goodreads 查看" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "%(name)s 所著的书" @@ -877,8 +979,8 @@ msgid "Name:" msgstr "名称:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "请用英文逗号(,)分隔多个值。" @@ -890,50 +992,54 @@ msgstr "简介:" msgid "Wikipedia link:" msgstr "维基百科链接:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "网站:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "出生日期:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "死亡日期:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "作者标识号:" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary key:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything key:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads key:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -941,7 +1047,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -955,14 +1061,14 @@ msgstr "ISNI:" msgid "Save" msgstr "保存" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -972,6 +1078,7 @@ msgstr "保存" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -989,98 +1096,102 @@ msgstr "加载数据会连接到 %(source_name)s 并检查这 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "确认" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "无法联系远程资源。" -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "编辑书目" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "点击添加封面" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "加载封面失败" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "点击放大" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s 则书评)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "添加描述" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "描述:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s 版次" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "此版本已在你的书架上:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "本书的 另一个版本 在你的 %(shelf_name)s 书架上。" -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "你的阅读活动" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "添加阅读日期" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "你还没有任何这本书的阅读活动。" -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "你的书评" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "你的评论" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "你的引用" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "主题" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "地点" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1088,18 +1199,18 @@ msgstr "地点" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "列表" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "添加到列表" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1122,40 +1233,50 @@ msgid "Copied ISBN!" msgstr "已复制 ISBN!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC 号:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "添加封面" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "上传封面:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "从 URL 加载封面:" @@ -1229,7 +1350,7 @@ msgid "This is a new work" msgstr "这是一个新的作品。" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1282,125 +1403,129 @@ msgstr "返回" msgid "Title:" msgstr "标题:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "副标题:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "系列:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "系列编号:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "语言:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "主题:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "添加主题" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "移除主题" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "添加新用户" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "出版" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "出版社:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "初版时间:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "出版时间:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "移除 %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "%(name)s 的作者页面" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "添加作者:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "添加作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "张三" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "添加其他作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "封面" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "实体性质" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "格式:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "装订细节:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "页数:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "书目标识号" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1428,7 +1553,7 @@ msgid "Any" msgstr "所有" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "语言:" @@ -1489,12 +1614,15 @@ msgid "Domain" msgstr "域名" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1506,8 +1634,8 @@ msgstr "状态" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1553,8 +1681,8 @@ msgstr "离开 BookWyrm" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "此链接将跳转至:%(link_url)s
    这是您想跳转的网址吗?" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "继续" @@ -1610,7 +1738,19 @@ msgstr "" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "加载数据会连接到 %(source_name)s 并检查这里还没有记录的与书籍相关的元数据。现存的元数据不会被覆盖。" -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "编辑状态" @@ -1637,7 +1777,7 @@ msgstr "确认代码:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "提交" @@ -1719,12 +1859,12 @@ msgstr "受推荐" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1843,8 +1983,8 @@ msgstr "你好呀," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "位于 %(site_name)s 的 BookWyrm" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1862,8 +2002,8 @@ msgstr "立即加入" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." -msgstr "了解更多 关于 %(site_name)s" +msgid "Learn more about %(site_name)s." +msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 #, python-format @@ -2039,19 +2179,19 @@ msgid "Add to your books" msgstr "添加到您的书籍中" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "想读" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "在读" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2060,7 +2200,7 @@ msgid "Read" msgstr "读过" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "已停止阅读" @@ -2093,7 +2233,7 @@ msgstr "你可以在开始使用 %(site_name)s 后添加书目。" #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "搜索" @@ -2743,6 +2883,7 @@ msgstr "您可以与其他用户创建或加入一个群组。 群组可以共 #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "群组" @@ -2856,11 +2997,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "" @@ -2886,69 +3029,81 @@ msgid "OpenLibrary (CSV)" msgstr "OpenLibrary (CSV)" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "Calibre (CSV)" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "您可以从您的Goodreads帐户的 导入/导出页面 下载您的Goodreads数据。" -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "数据文件:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "纳入书评" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "导入书评的隐私设定" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "导入" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "您已达到导入限额。" -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "" -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "最近的导入" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "创建日期" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "最后更新" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "无最近的导入" @@ -2972,20 +3127,24 @@ msgid "Imports" msgstr "导入" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "导入开始:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "正在进行" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "刷新" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "停止导入" @@ -3001,12 +3160,14 @@ msgid "Review items" msgstr "审阅项目" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." msgstr[0] "%(display_counter)s 项导入失败。" #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "查看并排查失败项目" @@ -3015,12 +3176,14 @@ msgid "Row" msgstr "行" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "标题" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "ISBN" @@ -3029,8 +3192,8 @@ msgid "Openlibrary key" msgstr "Openlibrary key" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "作者" @@ -3038,13 +3201,9 @@ msgstr "作者" msgid "Shelf" msgstr "书架" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "书评" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "书目" @@ -3062,6 +3221,8 @@ msgid "View imported review" msgstr "查看已导入的书评" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "已导入" @@ -3097,114 +3258,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "步骤1:" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "步骤2:" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "用户个人资料" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "用户设置" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "您的时区" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "默认帖文隐私设定" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "关注者和正在关注" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "阅读目标" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "书架" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "阅读记录" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "书评" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "书目" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3228,15 +3394,18 @@ msgid "Reject" msgstr "驳回" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "失败项目" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "问题排查" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "重试导入可以修复以下情况的缺失项目:" @@ -3245,21 +3414,96 @@ msgid "The book has been added to the instance since this import" msgstr "在此次导入后该书已被添加到本实例" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "暂时的错误或超时导致外部数据源不可用。" #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "在此次导入后,BookWyrm 已经更新并修复了漏洞" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "如果您看到意外失败的项目,请联系您的管理员或 发起一个 issue。" +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "总数" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "状态" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "创建帐号" @@ -3310,7 +3554,7 @@ msgid "Login" msgstr "登录" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "登录" @@ -3326,22 +3570,22 @@ msgstr "成功!邮箱地址已确认。" msgid "Username:" msgstr "用户名:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "密码:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "忘记了密码?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "更多关于本站点的信息" @@ -3369,7 +3613,7 @@ msgstr "重设密码" msgid "Reactivate Account" msgstr "" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "" @@ -3379,8 +3623,8 @@ msgid "%(site_name)s search" msgstr "%(site_name)s 搜索" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "搜索书籍、用户或列表" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3593,6 +3837,8 @@ msgid "List position" msgstr "列表位置:" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "设定" @@ -3914,7 +4160,7 @@ msgstr "" #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "" #: bookwyrm/templates/notifications/items/mention.html:20 @@ -4083,21 +4329,21 @@ msgstr "您已在关注 %(account)s" msgid "You have already requested to follow %(account)s" msgstr "您已请求关注 %(account)s" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "在联邦宇宙上关注 %(username)s" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "从另一个联邦宇宙帐户关注 %(username)s ,如 BookWyrm、Mastodon 或 Pleroma。" -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "用来关注的用户代号:" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "关注!" @@ -4138,95 +4384,27 @@ msgstr "让我们先登录..." msgid "Follow %(username)s" msgstr "关注 %(username)s" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "您正在关注 %(display_name)s!" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" -msgstr "双重验证" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" +msgstr "移动帐户" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" -msgstr "成功更新双重身份验证设置" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" +msgstr "创建别名" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "您的帐户已经启用双重验证。" - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "禁用双重身份验证" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "生成备份代码" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "使用身份验证应用扫描二维码,然后输入代码以确保您已设置。" - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "账户名称:" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "验证码:" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "输入您的双重验证应用中显示的验证码" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "您可以通过使用双重身份验证 (2FA) 使您的账户更加安全。 这将需要您每次登录时使用如 Authy的手机应用生成一次性验证码,类似应有还有Google 身份验证器Microsoft 身份验证器。" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "确认密码以开始设置双重身份验证。" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "设置双重身份验证" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "移动帐户" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "创建别名" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "添加另一个帐户作为别名" +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" +msgstr "添加另一个帐户作为别名" #: bookwyrm/templates/preferences/alias_user.html:16 msgid "Marking another account as an alias is required if you want to move that account to this one." @@ -4311,6 +4489,12 @@ msgstr "永久删除帐号" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "删除帐号的操作将无法被撤销。对应用户名也无法被再次注册。" +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "禁用双重身份验证" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "禁用双重身份认证" @@ -4340,12 +4524,12 @@ msgstr "个人资料" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "显示" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "隐私" @@ -4354,94 +4538,157 @@ msgid "Show reading goal prompt in feed" msgstr "在状态流中显示阅读目标提示" #: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show ratings" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show suggested users" msgstr "显示推荐用户" -#: bookwyrm/templates/preferences/edit_user.html:81 +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "在推荐的用户中显示此帐号" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "你的帐号会显示在 目录 中,并可能受其它 BookWyrm 用户推荐。" -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "偏好的时区:" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "主题:" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "手动批准关注者" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "隐藏关注者并在个人资料中关注" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "默认发文隐私:" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "正在寻找保护书架隐私的方法吗?您可以为每个书架设置一个单独的可见度。转到 您的书架 ,从标签栏中选择一个书架,然后单击“编辑书架”。" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "导出 BookWyrm 帐户" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "您可以在此创建一个导出文件。这将允许您迁移您的数据到另一个 BookWyrm 帐户。" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "在您新的 BookWyrm 帐户中可以选择导入什么:您无需导入所有导出的内容。" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "最近导出" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "日期" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "大小" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "下载您导出的文件" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4460,6 +4707,10 @@ msgstr "下载文件" msgid "Account" msgstr "帐号" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "移动帐户" @@ -4495,6 +4746,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "双重验证" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "成功更新双重身份验证设置" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "您的帐户已经启用双重验证。" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "生成备份代码" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "使用身份验证应用扫描二维码,然后输入代码以确保您已设置。" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "账户名称:" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "验证码:" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "输入您的双重验证应用中显示的验证码" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "您可以通过使用双重身份验证 (2FA) 使您的账户更加安全。 这将需要您每次登录时使用如 Authy的手机应用生成一次性验证码,类似应有还有Google 身份验证器Microsoft 身份验证器。" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "确认密码以开始设置双重身份验证。" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "设置双重身份验证" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4540,6 +4909,7 @@ msgstr "已开始阅读" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "进度" @@ -4669,8 +5039,8 @@ msgstr "搜索请求" msgid "Search type" msgstr "搜索类型" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4680,12 +5050,12 @@ msgstr "搜索类型" msgid "Users" msgstr "用户" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "没有找到 “%(query)s” 的搜索结果" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4706,7 +5076,7 @@ msgstr "编辑" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "公告" @@ -4724,13 +5094,13 @@ msgstr "否" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "开始日期:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "结束日期:" @@ -4799,7 +5169,6 @@ msgstr "颜色:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "自动审核规则" @@ -4812,35 +5181,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "已经报告的用户或状态(无论举报是否得到解决)将不会被标记。" #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "定时计划:" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "上次运行:" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "行数总计:" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "已启用:" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "删除定时计划" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "立即运行" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "最后运行日期将不会被更新" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "定时扫描" @@ -4885,6 +5262,7 @@ msgstr "删除规则" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "Celery 状态" @@ -4913,6 +5291,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -4956,8 +5335,9 @@ msgid "Active Tasks" msgstr "当前任务" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "ID" @@ -4970,6 +5350,8 @@ msgid "Run time" msgstr "运行时间" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "优先次序" @@ -5002,6 +5384,66 @@ msgstr "" msgid "Errors" msgstr "错误" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "停用原因:" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "互联实例" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "更新" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5009,7 +5451,7 @@ msgid "Dashboard" msgstr "仪表盘" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "用户总数" @@ -5018,40 +5460,36 @@ msgstr "用户总数" msgid "Active this month" msgstr "今月活跃" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "状态" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "作品" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "实例活动" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "区段:" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "天" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "周" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "用户注册活动" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "状态动态" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "创建的作品" @@ -5063,9 +5501,13 @@ msgstr "注册" msgid "Statuses posted" msgstr "发布的状态" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" -msgstr "总数" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" +msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 #, python-format @@ -5143,7 +5585,7 @@ msgstr "目前没有屏蔽邮件域名" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "电子邮箱配置" @@ -5156,7 +5598,7 @@ msgid "Successfully sent test email." msgstr "" #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "电子邮件发件人:" @@ -5204,15 +5646,6 @@ msgstr "发送测试邮件" msgid "Add instance" msgstr "添加实例" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "互联实例" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5288,12 +5721,6 @@ msgstr "备注" msgid "No notes" msgstr "没有备注" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "屏蔽" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "来自此实例的所有用户将会被停用。" @@ -5346,6 +5773,49 @@ msgstr "软件" msgid "No instances found" msgstr "未找到实例" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "已完成" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5392,7 +5862,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "" #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "" @@ -5412,62 +5882,81 @@ msgstr "天。" msgid "Set limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "小时" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" -msgstr "已完成" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "用户" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "日期已更新" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "待处理的项目" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "成功的项目" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5631,6 +6120,10 @@ msgstr "仲裁" msgid "Reports" msgstr "报告" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5641,22 +6134,26 @@ msgstr "链接域名" msgid "System" msgstr "" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "实例设置" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "站点设置" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5664,7 +6161,7 @@ msgstr "站点设置" msgid "Registration" msgstr "注册" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5870,6 +6367,61 @@ msgstr "已解决" msgid "No reports found." msgstr "没有找到报告" +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6115,10 +6667,6 @@ msgstr "手动通过的关注者:" msgid "Discoverable:" msgstr "可发现:" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "停用原因:" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "实例详情" @@ -6212,8 +6760,8 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "你的域名似乎配置出错了。它不应该包括协议或斜杠。" #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "您正在没有https的实际使用模式下运行BookWyrm,USE_HTTPS应该在实际使用中启用。" +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." +msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 msgid "Settings" @@ -6223,39 +6771,39 @@ msgstr "设置" msgid "Instance domain:" msgstr "实例域名:" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" -msgstr "协议:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" +msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "使用 S3:" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "默认界面语言:" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "启用预览图像:" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "启用图像缩略图:" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "你确定你将所有的都设置好了?" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "这是您最后一次设置域名和协议的机会。" -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "您可以更改您服务器上的.env文件中的实例设置。" -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "查看安装说明" @@ -6272,7 +6820,7 @@ msgid "Need help?" msgstr "需要帮助?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "创建书架" @@ -6280,58 +6828,71 @@ msgstr "创建书架" msgid "Edit Shelf" msgstr "编辑书架" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "所有书目" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "导入书目" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "%(formatted_count)s 本书籍" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "(正在显示 %(start)s 到 %(end)s)" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "编辑书架" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "删除书架" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "上架时间" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "开始时间" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "完成时间" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "直到" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "此书架是空的。" +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "邀请" @@ -6432,10 +6993,6 @@ msgstr "前有剧透!" msgid "Comment:" msgstr "评论:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "更新" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "发布" @@ -6461,7 +7018,7 @@ msgstr "页码:" msgid "At percent:" msgstr "百分比:" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "" @@ -6506,10 +7063,6 @@ msgstr "应用过滤器" msgid "Follow @%(username)s" msgstr "关注 @%(username)s" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "关注" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "撤回关注请求" @@ -6542,7 +7095,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "BookWyrm的源代码是免费可用的。您可以在 GitHub 上贡献或报告问题。" #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "没有评价" @@ -6553,7 +7106,7 @@ msgid_plural "%(half_rating)s stars" msgstr[0] "%(half_rating)s 星" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6778,6 +7331,10 @@ msgstr "停止阅读" msgid "Finish reading" msgstr "完成阅读" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "显示状态" @@ -7131,8 +7688,9 @@ msgid "View profile and more" msgstr "查看档案和其他" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "文件超过了最大大小: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7150,25 +7708,9 @@ msgstr[0] "%(num)d 本书 - 来自 %(user)s" msgid "%(title)s: %(subtitle)s" msgstr "%(title)s:%(subtitle)s" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "{obj.display_name} 的状态更新" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "{obj.display_name} 的书评" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "{obj.display_name} 的引用" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" -msgstr "{obj.display_name} 的评论" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" +msgstr "" #: bookwyrm/views/updates.py:45 #, python-format diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo index f9ca27be9b..801ad71c70 100644 Binary files a/locale/zh_Hant/LC_MESSAGES/django.mo and b/locale/zh_Hant/LC_MESSAGES/django.mo differ diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po index 6b9a75f9c6..f44b4a04dc 100644 --- a/locale/zh_Hant/LC_MESSAGES/django.po +++ b/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 03:27+0000\n" -"PO-Revision-Date: 2024-01-07 18:16\n" +"POT-Creation-Date: 2025-09-08 19:19+0000\n" +"PO-Revision-Date: 2025-09-08 20:00\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Traditional\n" "Language: zh\n" @@ -33,56 +33,55 @@ msgstr "一個月" msgid "Does Not Expire" msgstr "永不失效" -#: bookwyrm/forms/admin.py:49 -#, python-brace-format -msgid "{i} uses" -msgstr "{i} 次使用" - #: bookwyrm/forms/admin.py:50 msgid "Unlimited" msgstr "不受限" -#: bookwyrm/forms/edit_user.py:104 +#: bookwyrm/forms/edit_user.py:105 msgid "Incorrect password" msgstr "密碼不正確" -#: bookwyrm/forms/edit_user.py:111 bookwyrm/forms/landing.py:90 +#: bookwyrm/forms/edit_user.py:112 bookwyrm/forms/landing.py:93 msgid "Password does not match" msgstr "密碼不一致" -#: bookwyrm/forms/edit_user.py:134 +#: bookwyrm/forms/edit_user.py:135 msgid "Incorrect Password" msgstr "密碼不正確" -#: bookwyrm/forms/forms.py:58 +#: bookwyrm/forms/forms.py:59 msgid "Reading finish date cannot be before start date." msgstr "閱讀結束時間不能早於開始時間。" -#: bookwyrm/forms/forms.py:63 +#: bookwyrm/forms/forms.py:64 msgid "Reading stopped date cannot be before start date." msgstr "閱讀停止時間不能早於開始時間。" -#: bookwyrm/forms/forms.py:71 +#: bookwyrm/forms/forms.py:72 msgid "Reading stopped date cannot be in the future." msgstr "閱讀停止時間不能是在未來。" -#: bookwyrm/forms/forms.py:78 +#: bookwyrm/forms/forms.py:79 msgid "Reading finished date cannot be in the future." msgstr "閱讀結束時間不能是在未來。" -#: bookwyrm/forms/landing.py:38 +#: bookwyrm/forms/landing.py:37 msgid "Username or password are incorrect" msgstr "使用者名稱或密碼不正確" -#: bookwyrm/forms/landing.py:57 +#: bookwyrm/forms/landing.py:56 msgid "User with this username already exists" msgstr "已經存在使用該名稱的使用者。" -#: bookwyrm/forms/landing.py:66 +#: bookwyrm/forms/landing.py:65 msgid "A user with this email already exists." msgstr "已經存在使用該郵箱的使用者。" -#: bookwyrm/forms/landing.py:124 bookwyrm/forms/landing.py:132 +#: bookwyrm/forms/landing.py:69 +msgid "This email address cannot be registered." +msgstr "" + +#: bookwyrm/forms/landing.py:127 bookwyrm/forms/landing.py:135 msgid "Incorrect code" msgstr "不正確的代碼" @@ -90,7 +89,7 @@ msgstr "不正確的代碼" msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "這個網域已經被阻擋。如果你覺得這是個錯誤,請聯絡管理者。" -#: bookwyrm/forms/links.py:49 +#: bookwyrm/forms/links.py:51 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "包含檔案類型的連結已經被加到這本書當中,如果還看不到,可能是因為域名尚在等待處理中。" @@ -102,8 +101,8 @@ msgstr "列表順序" msgid "Book Title" msgstr "書名" -#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:158 -#: bookwyrm/templates/shelf/shelf.html:190 +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:164 +#: bookwyrm/templates/shelf/shelf.html:196 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "評價" @@ -145,8 +144,8 @@ msgstr "危險" msgid "Automatically generated report" msgstr "自動生成的報告" -#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:48 -#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:72 +#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:49 +#: bookwyrm/models/job.py:18 bookwyrm/models/link.py:76 #: bookwyrm/templates/import/import_status.html:214 #: bookwyrm/templates/settings/link_domains/link_domains.html:19 msgid "Pending" @@ -172,33 +171,101 @@ msgstr "" msgid "Domain block" msgstr "" -#: bookwyrm/models/book.py:282 +#: bookwyrm/models/book.py:473 msgid "Audiobook" msgstr "有聲書" -#: bookwyrm/models/book.py:283 +#: bookwyrm/models/book.py:474 msgid "eBook" msgstr "電子書" -#: bookwyrm/models/book.py:284 +#: bookwyrm/models/book.py:475 msgid "Graphic novel" msgstr "圖像小說" -#: bookwyrm/models/book.py:285 +#: bookwyrm/models/book.py:476 msgid "Hardcover" msgstr "精裝書" -#: bookwyrm/models/book.py:286 +#: bookwyrm/models/book.py:477 msgid "Paperback" msgstr "平裝書" +#: bookwyrm/models/book.py:486 bookwyrm/models/book.py:493 +#: bookwyrm/models/book.py:499 bookwyrm/models/book.py:504 +#: bookwyrm/models/book.py:509 bookwyrm/models/book.py:527 +#: bookwyrm/models/book.py:533 bookwyrm/models/book.py:538 +#: bookwyrm/models/book.py:543 bookwyrm/models/book.py:548 +#, python-format +msgid "%(value)s doesn't look like an ISBN" +msgstr "" + +#: bookwyrm/models/book.py:515 bookwyrm/models/book.py:555 +#, python-format +msgid "%(value)s doesn't have correct ISBN checksum, we expected %(check_version)s" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:151 bookwyrm/models/report.py:84 +#: bookwyrm/templates/settings/reports/report.html:115 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "評論" + +#: bookwyrm/models/bookwyrm_import_job.py:152 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "書評" + +#: bookwyrm/models/bookwyrm_import_job.py:153 +msgid "Quotation" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:181 +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "關注" + +#: bookwyrm/models/bookwyrm_import_job.py:182 +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "封鎖" + +#: bookwyrm/models/bookwyrm_import_job.py:398 +msgid "Unknown error importing book" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:496 +msgid "unauthorized" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:502 +msgid "Unknown error importing book status" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:696 +#: bookwyrm/models/bookwyrm_import_job.py:722 +msgid "connection_error" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:732 +msgid "invalid_relationship" +msgstr "" + +#: bookwyrm/models/bookwyrm_import_job.py:740 +msgid "Unkown error importing relationship" +msgstr "" + #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "跨站" -#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:75 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:26 @@ -216,16 +283,16 @@ msgstr "%(value)s 不是有效的 remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s 不是有效的使用者名稱" -#: bookwyrm/models/fields.py:198 bookwyrm/templates/layout.html:129 +#: bookwyrm/models/fields.py:201 bookwyrm/templates/layout.html:129 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "使用者名稱" -#: bookwyrm/models/fields.py:203 +#: bookwyrm/models/fields.py:206 msgid "A user with that username already exists." msgstr "已經存在使用該名稱的使用者。" -#: bookwyrm/models/fields.py:222 +#: bookwyrm/models/fields.py:225 #: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy_select.html:11 @@ -233,7 +300,7 @@ msgstr "已經存在使用該名稱的使用者。" msgid "Public" msgstr "公開" -#: bookwyrm/models/fields.py:223 +#: bookwyrm/models/fields.py:226 #: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy_select.html:14 @@ -241,7 +308,7 @@ msgstr "公開" msgid "Unlisted" msgstr "不公開" -#: bookwyrm/models/fields.py:224 +#: bookwyrm/models/fields.py:227 #: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:11 @@ -250,7 +317,7 @@ msgstr "不公開" msgid "Followers" msgstr "關注者" -#: bookwyrm/models/fields.py:225 +#: bookwyrm/models/fields.py:228 #: bookwyrm/templates/snippets/create_status/post_options_block.html:6 #: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:16 @@ -259,66 +326,65 @@ msgstr "關注者" msgid "Private" msgstr "私密" -#: bookwyrm/models/import_job.py:49 bookwyrm/models/job.py:19 -#: bookwyrm/templates/import/import.html:173 -#: bookwyrm/templates/import/import_user.html:211 -#: bookwyrm/templates/preferences/export-user.html:112 -#: bookwyrm/templates/settings/imports/imports.html:131 -#: bookwyrm/templates/settings/imports/imports.html:221 +#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:19 +#: bookwyrm/templates/import/import.html:184 +#: bookwyrm/templates/import/import_user.html:225 +#: bookwyrm/templates/import/user_import_status.html:56 +#: bookwyrm/templates/preferences/export-user.html:146 +#: bookwyrm/templates/settings/files.html:162 +#: bookwyrm/templates/settings/imports/imports.html:180 +#: bookwyrm/templates/settings/imports/imports.html:270 #: bookwyrm/templates/snippets/user_active_tag.html:8 msgid "Active" msgstr "活躍" -#: bookwyrm/models/import_job.py:50 bookwyrm/models/job.py:20 -#: bookwyrm/templates/import/import.html:171 -#: bookwyrm/templates/import/import_user.html:209 -#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:20 +#: bookwyrm/templates/import/import.html:182 +#: bookwyrm/templates/import/import_user.html:223 +#: bookwyrm/templates/import/user_import_status.html:54 +#: bookwyrm/templates/preferences/export-user.html:144 +#: bookwyrm/templates/settings/files.html:160 msgid "Complete" msgstr "已完成" -#: bookwyrm/models/import_job.py:51 bookwyrm/models/job.py:21 +#: bookwyrm/models/import_job.py:52 bookwyrm/models/job.py:21 msgid "Stopped" msgstr "已停止" -#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92 +#: bookwyrm/models/import_job.py:86 bookwyrm/models/import_job.py:94 msgid "Import stopped" msgstr "匯入已停止" -#: bookwyrm/models/import_job.py:356 bookwyrm/models/import_job.py:381 +#: bookwyrm/models/import_job.py:373 bookwyrm/models/import_job.py:398 msgid "Error loading book" msgstr "讀取書本時遇到錯誤" -#: bookwyrm/models/import_job.py:365 +#: bookwyrm/models/import_job.py:382 msgid "Could not find a match for book" msgstr "找不到匹配的書" #: bookwyrm/models/job.py:22 +#: bookwyrm/templates/import/user_import_status.html:69 msgid "Failed" msgstr "" -#: bookwyrm/models/link.py:51 +#: bookwyrm/models/link.py:55 msgid "Free" msgstr "免費" -#: bookwyrm/models/link.py:52 +#: bookwyrm/models/link.py:56 msgid "Purchasable" msgstr "可購買" -#: bookwyrm/models/link.py:53 +#: bookwyrm/models/link.py:57 msgid "Available for loan" msgstr "可借閱" -#: bookwyrm/models/link.py:70 +#: bookwyrm/models/link.py:74 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 msgid "Approved" msgstr "已核准" -#: bookwyrm/models/report.py:84 -#: bookwyrm/templates/settings/reports/report.html:115 -#: bookwyrm/templates/snippets/create_status.html:26 -msgid "Comment" -msgstr "評論" - #: bookwyrm/models/report.py:85 msgid "Resolved report" msgstr "已處理的舉報" @@ -363,123 +429,158 @@ msgstr "已通過審核的網域" msgid "Deleted item" msgstr "已刪除的項目" -#: bookwyrm/models/user.py:33 bookwyrm/templates/book/book.html:307 +#: bookwyrm/models/session.py:42 +msgid "Unknown" +msgstr "" + +#: bookwyrm/models/status.py:192 +#, python-format +msgid "%(display_name)s's status" +msgstr "" + +#: bookwyrm/models/status.py:367 +#, python-format +msgid "%(display_name)s's comment on %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:418 +#, python-format +msgid "%(display_name)s's quote from %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:454 +#, python-format +msgid "%(display_name)s's review of %(book_title)s" +msgstr "" + +#: bookwyrm/models/status.py:486 +#, python-format +msgid "%(display_name)s rated %(book_title)s: %(display_rating).1f star" +msgid_plural "%(display_name)s rated %(book_title)s: %(display_rating).1f stars" +msgstr[0] "" + +#: bookwyrm/models/user.py:39 bookwyrm/templates/book/book.html:333 msgid "Reviews" msgstr "書評" -#: bookwyrm/models/user.py:34 +#: bookwyrm/models/user.py:40 msgid "Comments" msgstr "評論" -#: bookwyrm/models/user.py:35 bookwyrm/templates/import/import_user.html:139 +#: bookwyrm/models/user.py:41 bookwyrm/templates/import/import_user.html:154 msgid "Quotations" msgstr "引用" -#: bookwyrm/models/user.py:36 +#: bookwyrm/models/user.py:42 msgid "Everything else" msgstr "所有其他內容" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home Timeline" msgstr "主頁時間線" -#: bookwyrm/settings.py:232 +#: bookwyrm/settings.py:237 msgid "Home" msgstr "主頁" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 msgid "Books Timeline" msgstr "書目時間線" -#: bookwyrm/settings.py:233 +#: bookwyrm/settings.py:238 #: bookwyrm/templates/guided_tour/user_profile.html:101 +#: bookwyrm/templates/import/user_import_status.html:73 #: bookwyrm/templates/search/layout.html:22 -#: bookwyrm/templates/search/layout.html:43 +#: bookwyrm/templates/search/layout.html:44 #: bookwyrm/templates/user/layout.html:107 msgid "Books" msgstr "書目" -#: bookwyrm/settings.py:313 +#: bookwyrm/settings.py:315 msgid "English" msgstr "English(英語)" -#: bookwyrm/settings.py:314 +#: bookwyrm/settings.py:316 msgid "Català (Catalan)" msgstr "Català (加泰羅尼亞語)" -#: bookwyrm/settings.py:315 +#: bookwyrm/settings.py:317 msgid "Deutsch (German)" msgstr "Deutsch(德語)" -#: bookwyrm/settings.py:316 +#: bookwyrm/settings.py:318 msgid "Esperanto (Esperanto)" msgstr "Esperanto (世界語)" -#: bookwyrm/settings.py:317 +#: bookwyrm/settings.py:319 msgid "Español (Spanish)" msgstr "Español(西班牙語)" -#: bookwyrm/settings.py:318 +#: bookwyrm/settings.py:320 msgid "Euskara (Basque)" msgstr "Euskara (巴斯克語)" -#: bookwyrm/settings.py:319 +#: bookwyrm/settings.py:321 msgid "Galego (Galician)" msgstr "Galego (加利西亞語)" -#: bookwyrm/settings.py:320 +#: bookwyrm/settings.py:322 msgid "Italiano (Italian)" msgstr "Italiano (意大利語)" -#: bookwyrm/settings.py:321 +#: bookwyrm/settings.py:323 +msgid "한국어 (Korean)" +msgstr "" + +#: bookwyrm/settings.py:324 msgid "Suomi (Finnish)" msgstr "Suomi (芬蘭語)" -#: bookwyrm/settings.py:322 +#: bookwyrm/settings.py:325 msgid "Français (French)" msgstr "Français(法語)" -#: bookwyrm/settings.py:323 +#: bookwyrm/settings.py:326 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (立陶宛語)" -#: bookwyrm/settings.py:324 +#: bookwyrm/settings.py:327 msgid "Nederlands (Dutch)" msgstr "Nederlands (荷蘭語)" -#: bookwyrm/settings.py:325 +#: bookwyrm/settings.py:328 msgid "Norsk (Norwegian)" msgstr "Norsk (挪威語)" -#: bookwyrm/settings.py:326 +#: bookwyrm/settings.py:329 msgid "Polski (Polish)" msgstr "Polski (波蘭語)" -#: bookwyrm/settings.py:327 +#: bookwyrm/settings.py:330 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (巴西葡萄牙語)" -#: bookwyrm/settings.py:328 +#: bookwyrm/settings.py:331 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (歐洲葡萄牙語)" -#: bookwyrm/settings.py:329 +#: bookwyrm/settings.py:332 msgid "Română (Romanian)" msgstr "Română (羅馬尼亞語)" -#: bookwyrm/settings.py:330 +#: bookwyrm/settings.py:333 msgid "Svenska (Swedish)" msgstr "Svenska (瑞典語)" -#: bookwyrm/settings.py:331 +#: bookwyrm/settings.py:334 msgid "Українська (Ukrainian)" msgstr "" -#: bookwyrm/settings.py:332 +#: bookwyrm/settings.py:335 msgid "简体中文 (Simplified Chinese)" msgstr "簡體中文" -#: bookwyrm/settings.py:333 +#: bookwyrm/settings.py:336 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文" @@ -517,9 +618,7 @@ msgid "The file you are uploading is too large." msgstr "" #: bookwyrm/templates/413.html:11 -msgid "\n" -" You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting.\n" -" " +msgid "You you can try using a smaller file, or ask your BookWyrm server administrator to increase the DATA_UPLOAD_MAX_MEMORY_SIZE setting." msgstr "" #: bookwyrm/templates/500.html:4 @@ -616,7 +715,7 @@ msgid "Statuses posted:" msgstr "" #: bookwyrm/templates/about/layout.html:19 -#: bookwyrm/templates/setup/config.html:74 +#: bookwyrm/templates/setup/config.html:68 msgid "Software version:" msgstr "軟體版本:" @@ -724,7 +823,7 @@ msgstr "" #: bookwyrm/templates/annual_summary/layout.html:157 #: bookwyrm/templates/annual_summary/layout.html:178 #: bookwyrm/templates/annual_summary/layout.html:247 -#: bookwyrm/templates/book/book.html:65 +#: bookwyrm/templates/book/book.html:70 #: bookwyrm/templates/discover/large-book.html:22 #: bookwyrm/templates/landing/large-book.html:26 #: bookwyrm/templates/landing/small-book.html:18 @@ -802,44 +901,48 @@ msgid "Wikipedia" msgstr "維基百科" #: bookwyrm/templates/author/author.html:79 +msgid "View on Wikidata" +msgstr "" + +#: bookwyrm/templates/author/author.html:87 msgid "Website" msgstr "網站" -#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/author/author.html:95 msgid "View ISNI record" msgstr "查看 ISNI 記錄" -#: bookwyrm/templates/author/author.html:95 -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/author/author.html:103 +#: bookwyrm/templates/book/book.html:180 msgid "View on ISFDB" msgstr "在 ISFDB 查看" -#: bookwyrm/templates/author/author.html:100 +#: bookwyrm/templates/author/author.html:108 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:142 +#: bookwyrm/templates/book/book.html:147 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "載入資料" -#: bookwyrm/templates/author/author.html:104 -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/author/author.html:112 +#: bookwyrm/templates/book/book.html:151 msgid "View on OpenLibrary" msgstr "在 OpenLibrary 檢視" -#: bookwyrm/templates/author/author.html:119 -#: bookwyrm/templates/book/book.html:160 +#: bookwyrm/templates/author/author.html:127 +#: bookwyrm/templates/book/book.html:165 msgid "View on Inventaire" msgstr "在 Inventaire 檢視" -#: bookwyrm/templates/author/author.html:135 +#: bookwyrm/templates/author/author.html:143 msgid "View on LibraryThing" msgstr "在 LibraryThing 查看" -#: bookwyrm/templates/author/author.html:143 +#: bookwyrm/templates/author/author.html:151 msgid "View on Goodreads" msgstr "在 Goodreads 查看" -#: bookwyrm/templates/author/author.html:158 +#: bookwyrm/templates/author/author.html:166 #, python-format msgid "Books by %(name)s" msgstr "%(name)s 所著的書" @@ -876,8 +979,8 @@ msgid "Name:" msgstr "名稱:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:89 -#: bookwyrm/templates/book/edit/edit_book_form.html:159 +#: bookwyrm/templates/book/edit/edit_book_form.html:91 +#: bookwyrm/templates/book/edit/edit_book_form.html:161 msgid "Separate multiple values with commas." msgstr "請用逗號(,)分隔多個值。" @@ -889,50 +992,54 @@ msgstr "簡介:" msgid "Wikipedia link:" msgstr "維基百科連結:" -#: bookwyrm/templates/author/edit_author.html:60 +#: bookwyrm/templates/author/edit_author.html:58 +msgid "Wikidata:" +msgstr "" + +#: bookwyrm/templates/author/edit_author.html:62 msgid "Website:" msgstr "網站:" -#: bookwyrm/templates/author/edit_author.html:65 +#: bookwyrm/templates/author/edit_author.html:67 msgid "Birth date:" msgstr "出生日期:" -#: bookwyrm/templates/author/edit_author.html:72 +#: bookwyrm/templates/author/edit_author.html:74 msgid "Death date:" msgstr "死亡日期:" -#: bookwyrm/templates/author/edit_author.html:79 +#: bookwyrm/templates/author/edit_author.html:81 msgid "Author Identifiers" msgstr "作者標識號:" -#: bookwyrm/templates/author/edit_author.html:81 +#: bookwyrm/templates/author/edit_author.html:83 msgid "Openlibrary key:" msgstr "Openlibrary key:" -#: bookwyrm/templates/author/edit_author.html:88 -#: bookwyrm/templates/book/edit/edit_book_form.html:334 +#: bookwyrm/templates/author/edit_author.html:90 +#: bookwyrm/templates/book/edit/edit_book_form.html:336 msgid "Inventaire ID:" msgstr "Inventaire ID:" -#: bookwyrm/templates/author/edit_author.html:95 +#: bookwyrm/templates/author/edit_author.html:97 msgid "Librarything key:" msgstr "Librarything key:" -#: bookwyrm/templates/author/edit_author.html:102 -#: bookwyrm/templates/book/edit/edit_book_form.html:343 +#: bookwyrm/templates/author/edit_author.html:104 +#: bookwyrm/templates/book/edit/edit_book_form.html:345 msgid "Goodreads key:" msgstr "Goodreads key:" -#: bookwyrm/templates/author/edit_author.html:109 +#: bookwyrm/templates/author/edit_author.html:111 msgid "ISFDB:" msgstr "ISFDB:" -#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/edit_author.html:118 msgid "ISNI:" msgstr "ISNI:" -#: bookwyrm/templates/author/edit_author.html:126 -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/author/edit_author.html:128 +#: bookwyrm/templates/book/book.html:246 #: bookwyrm/templates/book/edit/edit_book.html:150 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:86 @@ -940,7 +1047,7 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:140 +#: bookwyrm/templates/preferences/edit_user.html:146 #: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 @@ -954,14 +1061,14 @@ msgstr "ISNI:" msgid "Save" msgstr "儲存" -#: bookwyrm/templates/author/edit_author.html:127 +#: bookwyrm/templates/author/edit_author.html:129 #: bookwyrm/templates/author/sync_modal.html:23 -#: bookwyrm/templates/book/book.html:221 +#: bookwyrm/templates/book/book.html:247 #: bookwyrm/templates/book/cover_add_modal.html:33 #: bookwyrm/templates/book/edit/edit_book.html:152 #: bookwyrm/templates/book/edit/edit_book.html:155 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 -#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/file_links/verification_modal.html:26 #: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/groups/delete_group_modal.html:15 #: bookwyrm/templates/lists/add_item_modal.html:36 @@ -971,6 +1078,7 @@ msgstr "儲存" #: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:43 #: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/files.html:193 #: bookwyrm/templates/settings/imports/complete_import_modal.html:16 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:16 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -988,98 +1096,102 @@ msgstr "" #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:52 -#: bookwyrm/templates/preferences/2fa.html:77 +#: bookwyrm/templates/preferences/security.html:80 #: bookwyrm/templates/settings/imports/complete_import_modal.html:19 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:19 #: bookwyrm/templates/snippets/remove_from_group_button.html:17 msgid "Confirm" msgstr "確認" -#: bookwyrm/templates/book/book.html:20 +#: bookwyrm/templates/book/book.html:21 msgid "Unable to connect to remote source." msgstr "無法連接到遠程數據源。" -#: bookwyrm/templates/book/book.html:73 bookwyrm/templates/book/book.html:74 +#: bookwyrm/templates/book/book.html:78 bookwyrm/templates/book/book.html:79 msgid "Edit Book" msgstr "編輯書目" -#: bookwyrm/templates/book/book.html:99 bookwyrm/templates/book/book.html:102 +#: bookwyrm/templates/book/book.html:104 bookwyrm/templates/book/book.html:107 msgid "Click to add cover" msgstr "點擊添加封面" -#: bookwyrm/templates/book/book.html:108 +#: bookwyrm/templates/book/book.html:113 msgid "Failed to load cover" msgstr "載入封面失敗" -#: bookwyrm/templates/book/book.html:119 +#: bookwyrm/templates/book/book.html:124 msgid "Click to enlarge" msgstr "點擊放大" -#: bookwyrm/templates/book/book.html:196 +#: bookwyrm/templates/book/book.html:187 +msgid "View on Finna" +msgstr "" + +#: bookwyrm/templates/book/book.html:219 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "(%(review_count)s 則書評)" -#: bookwyrm/templates/book/book.html:209 +#: bookwyrm/templates/book/book.html:235 msgid "Add Description" msgstr "新增描述" -#: bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/edit/edit_book_form.html:53 +#: bookwyrm/templates/book/book.html:242 +#: bookwyrm/templates/book/edit/edit_book_form.html:55 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "描述:" -#: bookwyrm/templates/book/book.html:232 +#: bookwyrm/templates/book/book.html:258 #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "%(count)s 版次" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:272 msgid "You have shelved this edition in:" msgstr "此版本已在你的書架上:" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:287 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "本書的 另一個版本 在你的 %(shelf_name)s 書架上。" -#: bookwyrm/templates/book/book.html:272 +#: bookwyrm/templates/book/book.html:298 msgid "Your reading activity" msgstr "你的閱讀活動" -#: bookwyrm/templates/book/book.html:278 +#: bookwyrm/templates/book/book.html:304 #: bookwyrm/templates/guided_tour/book.html:56 msgid "Add read dates" msgstr "新增閱讀日期" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:312 msgid "You don't have any reading activity for this book." msgstr "你還未閱讀這本書。" -#: bookwyrm/templates/book/book.html:312 +#: bookwyrm/templates/book/book.html:338 msgid "Your reviews" msgstr "你的書評" -#: bookwyrm/templates/book/book.html:318 +#: bookwyrm/templates/book/book.html:344 msgid "Your comments" msgstr "你的評論" -#: bookwyrm/templates/book/book.html:324 +#: bookwyrm/templates/book/book.html:350 msgid "Your quotes" msgstr "你的引用" -#: bookwyrm/templates/book/book.html:360 +#: bookwyrm/templates/book/book.html:386 msgid "Subjects" msgstr "主題" -#: bookwyrm/templates/book/book.html:372 +#: bookwyrm/templates/book/book.html:398 msgid "Places" msgstr "地點" -#: bookwyrm/templates/book/book.html:383 +#: bookwyrm/templates/book/book.html:409 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/guided_tour/lists.html:14 #: bookwyrm/templates/guided_tour/user_books.html:102 @@ -1087,18 +1199,18 @@ msgstr "地點" #: bookwyrm/templates/layout.html:88 bookwyrm/templates/lists/curate.html:8 #: bookwyrm/templates/lists/list.html:12 bookwyrm/templates/lists/lists.html:5 #: bookwyrm/templates/lists/lists.html:12 -#: bookwyrm/templates/search/layout.html:26 -#: bookwyrm/templates/search/layout.html:51 +#: bookwyrm/templates/search/layout.html:27 +#: bookwyrm/templates/search/layout.html:55 #: bookwyrm/templates/settings/celery.html:77 #: bookwyrm/templates/user/layout.html:101 bookwyrm/templates/user/lists.html:6 msgid "Lists" msgstr "列表" -#: bookwyrm/templates/book/book.html:395 +#: bookwyrm/templates/book/book.html:421 msgid "Add to list" msgstr "新增到列表" -#: bookwyrm/templates/book/book.html:405 +#: bookwyrm/templates/book/book.html:431 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -1121,40 +1233,50 @@ msgid "Copied ISBN!" msgstr "已複製ISBN!" #: bookwyrm/templates/book/book_identifiers.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:352 +#: bookwyrm/templates/book/edit/edit_book_form.html:354 +#: bookwyrm/templates/rss/edition.html:6 msgid "OCLC Number:" msgstr "OCLC 號:" #: bookwyrm/templates/book/book_identifiers.html:30 -#: bookwyrm/templates/book/edit/edit_book_form.html:361 +#: bookwyrm/templates/book/edit/edit_book_form.html:363 +#: bookwyrm/templates/rss/edition.html:7 msgid "ASIN:" msgstr "ASIN:" #: bookwyrm/templates/book/book_identifiers.html:37 -#: bookwyrm/templates/book/edit/edit_book_form.html:370 +#: bookwyrm/templates/book/edit/edit_book_form.html:372 +#: bookwyrm/templates/rss/edition.html:8 msgid "Audible ASIN:" msgstr "Audible ASIN:" #: bookwyrm/templates/book/book_identifiers.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:379 +#: bookwyrm/templates/book/edit/edit_book_form.html:381 +#: bookwyrm/templates/rss/edition.html:9 msgid "ISFDB ID:" msgstr "ISFDB ID:" #: bookwyrm/templates/book/book_identifiers.html:51 +#: bookwyrm/templates/rss/edition.html:10 msgid "Goodreads:" msgstr "Goodreads:" +#: bookwyrm/templates/book/book_identifiers.html:58 +#: bookwyrm/templates/book/edit/edit_book_form.html:390 +msgid "Finna ID:" +msgstr "" + #: bookwyrm/templates/book/cover_add_modal.html:5 msgid "Add cover" msgstr "新增封面" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:244 +#: bookwyrm/templates/book/edit/edit_book_form.html:246 msgid "Upload cover:" msgstr "上載封面:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:250 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Load cover from URL:" msgstr "" @@ -1228,7 +1350,7 @@ msgid "This is a new work" msgstr "這是一個新的作品。" #: bookwyrm/templates/book/edit/edit_book.html:139 -#: bookwyrm/templates/feed/status.html:19 +#: bookwyrm/templates/feed/status.html:17 #: bookwyrm/templates/guided_tour/book.html:44 #: bookwyrm/templates/guided_tour/book.html:68 #: bookwyrm/templates/guided_tour/book.html:91 @@ -1281,125 +1403,129 @@ msgstr "返回" msgid "Title:" msgstr "標題:" -#: bookwyrm/templates/book/edit/edit_book_form.html:35 +#: bookwyrm/templates/book/edit/edit_book_form.html:36 msgid "Sort Title:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:46 msgid "Subtitle:" msgstr "副標題:" -#: bookwyrm/templates/book/edit/edit_book_form.html:64 +#: bookwyrm/templates/book/edit/edit_book_form.html:66 msgid "Series:" msgstr "系列:" -#: bookwyrm/templates/book/edit/edit_book_form.html:74 +#: bookwyrm/templates/book/edit/edit_book_form.html:76 msgid "Series number:" msgstr "系列編號:" -#: bookwyrm/templates/book/edit/edit_book_form.html:85 +#: bookwyrm/templates/book/edit/edit_book_form.html:87 msgid "Languages:" msgstr "語言:" -#: bookwyrm/templates/book/edit/edit_book_form.html:97 +#: bookwyrm/templates/book/edit/edit_book_form.html:99 msgid "Subjects:" msgstr "主旨:" -#: bookwyrm/templates/book/edit/edit_book_form.html:101 +#: bookwyrm/templates/book/edit/edit_book_form.html:103 msgid "Add subject" msgstr "新增主旨" -#: bookwyrm/templates/book/edit/edit_book_form.html:119 +#: bookwyrm/templates/book/edit/edit_book_form.html:121 msgid "Remove subject" msgstr "移除主旨" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Add Another Subject" msgstr "新增另一個主旨" -#: bookwyrm/templates/book/edit/edit_book_form.html:150 +#: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Publication" msgstr "出版品" -#: bookwyrm/templates/book/edit/edit_book_form.html:155 +#: bookwyrm/templates/book/edit/edit_book_form.html:157 msgid "Publisher:" msgstr "出版社:" -#: bookwyrm/templates/book/edit/edit_book_form.html:167 +#: bookwyrm/templates/book/edit/edit_book_form.html:169 msgid "First published date:" msgstr "初版時間:" -#: bookwyrm/templates/book/edit/edit_book_form.html:175 +#: bookwyrm/templates/book/edit/edit_book_form.html:177 msgid "Published date:" msgstr "出版時間:" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:188 +#: bookwyrm/templates/import/user_import_status.html:155 +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:47 msgid "Authors" msgstr "作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 +#: bookwyrm/templates/book/edit/edit_book_form.html:199 #, python-format msgid "Remove %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 #, python-format msgid "Author page for %(name)s" msgstr "%(name)s 的作者頁面" -#: bookwyrm/templates/book/edit/edit_book_form.html:208 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Authors:" msgstr "新增作者:" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 -#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:213 +#: bookwyrm/templates/book/edit/edit_book_form.html:216 msgid "Add Author" msgstr "新增作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:212 -#: bookwyrm/templates/book/edit/edit_book_form.html:215 +#: bookwyrm/templates/book/edit/edit_book_form.html:214 +#: bookwyrm/templates/book/edit/edit_book_form.html:217 msgid "Jane Doe" msgstr "陳大文" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:223 msgid "Add Another Author" msgstr "新增其他作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:231 -#: bookwyrm/templates/shelf/shelf.html:149 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 +#: bookwyrm/templates/shelf/shelf.html:155 msgid "Cover" msgstr "封面" -#: bookwyrm/templates/book/edit/edit_book_form.html:263 +#: bookwyrm/templates/book/edit/edit_book_form.html:265 msgid "Physical Properties" msgstr "實體性質" -#: bookwyrm/templates/book/edit/edit_book_form.html:270 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "格式:" -#: bookwyrm/templates/book/edit/edit_book_form.html:280 +#: bookwyrm/templates/book/edit/edit_book_form.html:282 msgid "Format details:" msgstr "裝訂詳情:" -#: bookwyrm/templates/book/edit/edit_book_form.html:291 +#: bookwyrm/templates/book/edit/edit_book_form.html:293 msgid "Pages:" msgstr "頁數:" -#: bookwyrm/templates/book/edit/edit_book_form.html:302 +#: bookwyrm/templates/book/edit/edit_book_form.html:304 msgid "Book Identifiers" msgstr "書目標識號" -#: bookwyrm/templates/book/edit/edit_book_form.html:307 +#: bookwyrm/templates/book/edit/edit_book_form.html:309 +#: bookwyrm/templates/rss/edition.html:5 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:316 +#: bookwyrm/templates/book/edit/edit_book_form.html:318 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:325 +#: bookwyrm/templates/book/edit/edit_book_form.html:327 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1427,7 +1553,7 @@ msgid "Any" msgstr "所有" #: bookwyrm/templates/book/editions/language_filter.html:6 -#: bookwyrm/templates/preferences/edit_user.html:95 +#: bookwyrm/templates/preferences/edit_user.html:101 msgid "Language:" msgstr "語言:" @@ -1488,12 +1614,15 @@ msgid "Domain" msgstr "網域" #: bookwyrm/templates/book/file_links/edit_links.html:36 -#: bookwyrm/templates/import/import.html:138 +#: bookwyrm/templates/import/import.html:149 #: bookwyrm/templates/import/import_status.html:134 -#: bookwyrm/templates/import/import_user.html:177 -#: bookwyrm/templates/preferences/export-user.html:78 +#: bookwyrm/templates/import/import_user.html:192 +#: bookwyrm/templates/import/user_import_status.html:162 +#: bookwyrm/templates/import/user_troubleshoot.html:62 +#: bookwyrm/templates/preferences/export-user.html:113 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/imports/imports.html:255 +#: bookwyrm/templates/settings/files.html:137 +#: bookwyrm/templates/settings/imports/imports.html:304 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:48 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/themes.html:111 @@ -1505,8 +1634,8 @@ msgstr "狀態" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 #: bookwyrm/templates/settings/federation/instance.html:112 -#: bookwyrm/templates/settings/imports/imports.html:174 -#: bookwyrm/templates/settings/imports/imports.html:253 +#: bookwyrm/templates/settings/imports/imports.html:223 +#: bookwyrm/templates/settings/imports/imports.html:302 #: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/themes.html:108 msgid "Actions" @@ -1552,8 +1681,8 @@ msgstr "" msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" msgstr "" -#: bookwyrm/templates/book/file_links/verification_modal.html:26 -#: bookwyrm/templates/setup/config.html:139 +#: bookwyrm/templates/book/file_links/verification_modal.html:27 +#: bookwyrm/templates/setup/config.html:134 msgid "Continue" msgstr "" @@ -1609,7 +1738,19 @@ msgstr "" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "" -#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +#: bookwyrm/templates/compose.html:7 bookwyrm/templates/compose.html:21 +msgid "Edit review" +msgstr "" + +#: bookwyrm/templates/compose.html:9 bookwyrm/templates/compose.html:23 +msgid "Edit quote" +msgstr "" + +#: bookwyrm/templates/compose.html:11 bookwyrm/templates/compose.html:25 +msgid "Edit comment" +msgstr "" + +#: bookwyrm/templates/compose.html:13 bookwyrm/templates/compose.html:27 msgid "Edit status" msgstr "編輯狀態" @@ -1636,7 +1777,7 @@ msgstr "" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:81 -#: bookwyrm/templates/settings/dashboard/dashboard.html:102 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" msgstr "提交" @@ -1718,12 +1859,12 @@ msgstr "受推薦" #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 -#: bookwyrm/templates/ostatus/remote_follow.html:21 -#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/remote_follow.html:23 +#: bookwyrm/templates/ostatus/remote_follow.html:24 #: bookwyrm/templates/ostatus/subscribe.html:41 #: bookwyrm/templates/ostatus/subscribe.html:42 -#: bookwyrm/templates/ostatus/success.html:17 -#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/ostatus/success.html:21 +#: bookwyrm/templates/ostatus/success.html:22 #: bookwyrm/templates/user/moved.html:19 bookwyrm/templates/user/moved.html:20 #: bookwyrm/templates/user/user_preview.html:16 #: bookwyrm/templates/user/user_preview.html:17 @@ -1842,8 +1983,8 @@ msgstr "你好呀," #: bookwyrm/templates/email/html_layout.html:21 #, python-format -msgid "BookWyrm hosted on %(site_name)s" -msgstr "位於 %(site_name)s 的 BookWyrm" +msgid "BookWyrm hosted on %(site_name)s" +msgstr "" #: bookwyrm/templates/email/html_layout.html:23 msgid "Email preference" @@ -1861,7 +2002,7 @@ msgstr "立即加入" #: bookwyrm/templates/email/invite/html_content.html:15 #, python-format -msgid "Learn more about %(site_name)s." +msgid "Learn more about %(site_name)s." msgstr "" #: bookwyrm/templates/email/invite/text_content.html:4 @@ -2038,19 +2179,19 @@ msgid "Add to your books" msgstr "" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:88 bookwyrm/templates/user/user.html:37 +#: bookwyrm/templates/shelf/shelf.html:93 bookwyrm/templates/user/user.html:37 #: bookwyrm/templatetags/shelf_tags.py:14 msgid "To Read" msgstr "想讀" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:89 bookwyrm/templates/user/user.html:38 +#: bookwyrm/templates/shelf/shelf.html:94 bookwyrm/templates/user/user.html:38 #: bookwyrm/templatetags/shelf_tags.py:15 msgid "Currently Reading" msgstr "在讀" #: bookwyrm/templates/get_started/book_preview.html:12 -#: bookwyrm/templates/shelf/shelf.html:90 +#: bookwyrm/templates/shelf/shelf.html:95 #: bookwyrm/templates/snippets/shelf_selector.html:46 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 @@ -2059,7 +2200,7 @@ msgid "Read" msgstr "讀過" #: bookwyrm/templates/get_started/book_preview.html:13 -#: bookwyrm/templates/shelf/shelf.html:91 bookwyrm/templates/user/user.html:40 +#: bookwyrm/templates/shelf/shelf.html:96 bookwyrm/templates/user/user.html:40 #: bookwyrm/templatetags/shelf_tags.py:17 msgid "Stopped Reading" msgstr "" @@ -2092,7 +2233,7 @@ msgstr "你可以在開始使用 %(site_name)s 後新增書目。" #: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:5 #: bookwyrm/templates/search/layout.html:10 -#: bookwyrm/templates/search/layout.html:32 +#: bookwyrm/templates/search/layout.html:33 msgid "Search" msgstr "搜尋" @@ -2742,6 +2883,7 @@ msgstr "" #: bookwyrm/templates/guided_tour/user_groups.html:11 #: bookwyrm/templates/guided_tour/user_profile.html:55 +#: bookwyrm/templates/preferences/export-user.html:37 #: bookwyrm/templates/user/groups.html:6 bookwyrm/templates/user/layout.html:95 msgid "Groups" msgstr "群組" @@ -2855,11 +2997,13 @@ msgid "You have %(display_left)s left." msgstr "" #: bookwyrm/templates/import/import.html:33 +#: bookwyrm/templates/import/import_user.html:40 #, python-format msgid "On average, recent imports have taken %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import.html:37 +#: bookwyrm/templates/import/import_user.html:44 #, python-format msgid "On average, recent imports have taken %(minutes)s minutes." msgstr "" @@ -2885,69 +3029,81 @@ msgid "OpenLibrary (CSV)" msgstr "" #: bookwyrm/templates/import/import.html:70 +msgid "OpenReads (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:73 msgid "Calibre (CSV)" msgstr "" #: bookwyrm/templates/import/import.html:76 +msgid "BookWyrm (CSV)" +msgstr "" + +#: bookwyrm/templates/import/import.html:82 msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." msgstr "" -#: bookwyrm/templates/import/import.html:85 -#: bookwyrm/templates/import/import_user.html:49 +#: bookwyrm/templates/import/import.html:91 +#: bookwyrm/templates/import/import_user.html:64 msgid "Data file:" msgstr "資料檔案:" -#: bookwyrm/templates/import/import.html:93 +#: bookwyrm/templates/import/import.html:99 msgid "Include reviews" msgstr "納入書評" -#: bookwyrm/templates/import/import.html:98 -msgid "Privacy setting for imported reviews:" -msgstr "匯入書評的私隱設定" +#: bookwyrm/templates/import/import.html:104 +msgid "Create new shelves if they do not exist" +msgstr "" -#: bookwyrm/templates/import/import.html:105 -#: bookwyrm/templates/import/import.html:107 -#: bookwyrm/templates/import/import_user.html:155 -#: bookwyrm/templates/import/import_user.html:157 +#: bookwyrm/templates/import/import.html:109 +msgid "Privacy setting for imported reviews and shelves:" +msgstr "" + +#: bookwyrm/templates/import/import.html:116 +#: bookwyrm/templates/import/import.html:118 +#: bookwyrm/templates/import/import_user.html:170 +#: bookwyrm/templates/import/import_user.html:172 #: bookwyrm/templates/settings/federation/instance_blocklist.html:78 msgid "Import" msgstr "匯入" -#: bookwyrm/templates/import/import.html:108 -#: bookwyrm/templates/import/import_user.html:158 +#: bookwyrm/templates/import/import.html:119 +#: bookwyrm/templates/import/import_user.html:173 msgid "You've reached the import limit." msgstr "" -#: bookwyrm/templates/import/import.html:117 +#: bookwyrm/templates/import/import.html:128 #: bookwyrm/templates/import/import_user.html:27 msgid "Imports are temporarily disabled; thank you for your patience." msgstr "" -#: bookwyrm/templates/import/import.html:124 -#: bookwyrm/templates/import/import_user.html:166 +#: bookwyrm/templates/import/import.html:135 +#: bookwyrm/templates/import/import_user.html:181 msgid "Recent Imports" msgstr "最近的匯入" -#: bookwyrm/templates/import/import.html:129 -#: bookwyrm/templates/import/import_user.html:171 -#: bookwyrm/templates/settings/imports/imports.html:153 -#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/import/import.html:140 +#: bookwyrm/templates/import/import_user.html:186 +#: bookwyrm/templates/settings/imports/imports.html:202 +#: bookwyrm/templates/settings/imports/imports.html:292 msgid "Date Created" msgstr "" -#: bookwyrm/templates/import/import.html:132 -#: bookwyrm/templates/import/import_user.html:174 +#: bookwyrm/templates/import/import.html:143 +#: bookwyrm/templates/import/import_user.html:189 msgid "Last Updated" msgstr "" -#: bookwyrm/templates/import/import.html:135 -#: bookwyrm/templates/settings/imports/imports.html:162 +#: bookwyrm/templates/import/import.html:146 +#: bookwyrm/templates/settings/imports/imports.html:211 msgid "Items" msgstr "" -#: bookwyrm/templates/import/import.html:144 -#: bookwyrm/templates/import/import_user.html:183 -#: bookwyrm/templates/preferences/export-user.html:87 +#: bookwyrm/templates/import/import.html:155 +#: bookwyrm/templates/import/import_user.html:198 +#: bookwyrm/templates/preferences/export-user.html:122 msgid "No recent imports" msgstr "無最近的匯入" @@ -2971,20 +3127,24 @@ msgid "Imports" msgstr "" #: bookwyrm/templates/import/import_status.html:39 +#: bookwyrm/templates/import/user_import_status.html:35 msgid "Import started:" msgstr "匯入開始:" #: bookwyrm/templates/import/import_status.html:48 +#: bookwyrm/templates/import/user_import_status.html:99 msgid "In progress" msgstr "" #: bookwyrm/templates/import/import_status.html:50 +#: bookwyrm/templates/import/user_import_status.html:101 msgid "Refresh" msgstr "" #: bookwyrm/templates/import/import_status.html:72 -#: bookwyrm/templates/settings/imports/imports.html:194 -#: bookwyrm/templates/settings/imports/imports.html:271 +#: bookwyrm/templates/import/user_import_status.html:123 +#: bookwyrm/templates/settings/imports/imports.html:243 +#: bookwyrm/templates/settings/imports/imports.html:320 msgid "Stop import" msgstr "" @@ -3000,12 +3160,14 @@ msgid "Review items" msgstr "" #: bookwyrm/templates/import/import_status.html:89 +#: bookwyrm/templates/import/user_import_status.html:129 #, python-format msgid "%(display_counter)s item failed to import." msgid_plural "%(display_counter)s items failed to import." msgstr[0] "" #: bookwyrm/templates/import/import_status.html:95 +#: bookwyrm/templates/import/user_import_status.html:135 msgid "View and troubleshoot failed items" msgstr "" @@ -3014,12 +3176,14 @@ msgid "Row" msgstr "" #: bookwyrm/templates/import/import_status.html:110 -#: bookwyrm/templates/shelf/shelf.html:150 -#: bookwyrm/templates/shelf/shelf.html:172 +#: bookwyrm/templates/import/user_import_status.html:149 +#: bookwyrm/templates/shelf/shelf.html:156 +#: bookwyrm/templates/shelf/shelf.html:178 msgid "Title" msgstr "標題" #: bookwyrm/templates/import/import_status.html:113 +#: bookwyrm/templates/import/user_import_status.html:152 msgid "ISBN" msgstr "" @@ -3028,8 +3192,8 @@ msgid "Openlibrary key" msgstr "" #: bookwyrm/templates/import/import_status.html:121 -#: bookwyrm/templates/shelf/shelf.html:151 -#: bookwyrm/templates/shelf/shelf.html:175 +#: bookwyrm/templates/shelf/shelf.html:157 +#: bookwyrm/templates/shelf/shelf.html:181 msgid "Author" msgstr "作者" @@ -3037,13 +3201,9 @@ msgstr "作者" msgid "Shelf" msgstr "" -#: bookwyrm/templates/import/import_status.html:127 -#: bookwyrm/templates/import/manual_review.html:13 -#: bookwyrm/templates/snippets/create_status.html:16 -msgid "Review" -msgstr "書評" - #: bookwyrm/templates/import/import_status.html:131 +#: bookwyrm/templates/import/user_import_status.html:159 +#: bookwyrm/templates/import/user_troubleshoot.html:59 #: bookwyrm/templates/settings/link_domains/link_table.html:9 msgid "Book" msgstr "書目" @@ -3061,6 +3221,8 @@ msgid "View imported review" msgstr "" #: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/import/user_import_status.html:68 +#: bookwyrm/templates/import/user_import_status.html:191 msgid "Imported" msgstr "已匯入" @@ -3096,114 +3258,119 @@ msgstr "" #: bookwyrm/templates/import/import_user.html:32 #, python-format -msgid "Currently you are allowed to import one user every %(user_import_hours)s hours." +msgid "Currently you are allowed to import one user every %(hours)s hours." msgstr "" #: bookwyrm/templates/import/import_user.html:33 #, python-format -msgid "You will next be able to import a user file at %(next_available)s" +msgid "You will next be able to import a user file at %(next_time)s" msgstr "" -#: bookwyrm/templates/import/import_user.html:41 +#: bookwyrm/templates/import/import_user.html:56 msgid "Step 1:" msgstr "" -#: bookwyrm/templates/import/import_user.html:43 +#: bookwyrm/templates/import/import_user.html:58 msgid "Select an export file generated from another BookWyrm account. The file format should be .tar.gz." msgstr "" -#: bookwyrm/templates/import/import_user.html:58 +#: bookwyrm/templates/import/import_user.html:73 msgid "Step 2:" msgstr "" -#: bookwyrm/templates/import/import_user.html:60 +#: bookwyrm/templates/import/import_user.html:75 msgid "Deselect any checkboxes for data you do not wish to include in your import." msgstr "" -#: bookwyrm/templates/import/import_user.html:71 -#: bookwyrm/templates/shelf/shelf.html:26 +#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/preferences/export-user.html:21 +#: bookwyrm/templates/shelf/shelf.html:31 #: bookwyrm/templates/user/relationships/followers.html:18 #: bookwyrm/templates/user/relationships/following.html:18 msgid "User profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:74 +#: bookwyrm/templates/import/import_user.html:89 msgid "Overwrites display name, summary, and avatar" msgstr "" -#: bookwyrm/templates/import/import_user.html:80 +#: bookwyrm/templates/import/import_user.html:95 msgid "User settings" msgstr "" -#: bookwyrm/templates/import/import_user.html:83 +#: bookwyrm/templates/import/import_user.html:98 msgid "Overwrites:" msgstr "" -#: bookwyrm/templates/import/import_user.html:86 +#: bookwyrm/templates/import/import_user.html:101 msgid "Whether manual approval is required for other users to follow your account" msgstr "" -#: bookwyrm/templates/import/import_user.html:89 +#: bookwyrm/templates/import/import_user.html:104 msgid "Whether following/followers are shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:92 +#: bookwyrm/templates/import/import_user.html:107 msgid "Whether your reading goal is shown on your profile" msgstr "" -#: bookwyrm/templates/import/import_user.html:95 +#: bookwyrm/templates/import/import_user.html:110 msgid "Whether you see user follow suggestions" msgstr "" -#: bookwyrm/templates/import/import_user.html:98 +#: bookwyrm/templates/import/import_user.html:113 msgid "Whether your account is suggested to others" msgstr "" -#: bookwyrm/templates/import/import_user.html:101 +#: bookwyrm/templates/import/import_user.html:116 msgid "Your timezone" msgstr "" -#: bookwyrm/templates/import/import_user.html:104 +#: bookwyrm/templates/import/import_user.html:119 msgid "Your default post privacy setting" msgstr "" -#: bookwyrm/templates/import/import_user.html:112 +#: bookwyrm/templates/import/import_user.html:127 msgid "Followers and following" msgstr "" -#: bookwyrm/templates/import/import_user.html:116 +#: bookwyrm/templates/import/import_user.html:131 msgid "User blocks" msgstr "" -#: bookwyrm/templates/import/import_user.html:123 +#: bookwyrm/templates/import/import_user.html:138 +#: bookwyrm/templates/preferences/export-user.html:23 msgid "Reading goals" msgstr "閱讀目標" -#: bookwyrm/templates/import/import_user.html:126 +#: bookwyrm/templates/import/import_user.html:141 msgid "Overwrites reading goals for all years listed in the import file" msgstr "" -#: bookwyrm/templates/import/import_user.html:130 +#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/preferences/export-user.html:24 msgid "Shelves" msgstr "" -#: bookwyrm/templates/import/import_user.html:133 +#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/preferences/export-user.html:25 msgid "Reading history" msgstr "" -#: bookwyrm/templates/import/import_user.html:136 +#: bookwyrm/templates/import/import_user.html:151 +#: bookwyrm/templates/preferences/export-user.html:26 msgid "Book reviews" msgstr "" -#: bookwyrm/templates/import/import_user.html:142 +#: bookwyrm/templates/import/import_user.html:157 msgid "Comments about books" msgstr "" -#: bookwyrm/templates/import/import_user.html:145 +#: bookwyrm/templates/import/import_user.html:160 msgid "Book lists" msgstr "" -#: bookwyrm/templates/import/import_user.html:148 +#: bookwyrm/templates/import/import_user.html:163 msgid "Saved lists" msgstr "" @@ -3227,15 +3394,18 @@ msgid "Reject" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:7 -#: bookwyrm/templates/settings/imports/imports.html:171 +#: bookwyrm/templates/import/user_troubleshoot.html:8 +#: bookwyrm/templates/settings/imports/imports.html:220 msgid "Failed items" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:12 +#: bookwyrm/templates/import/user_troubleshoot.html:13 msgid "Troubleshooting" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:20 +#: bookwyrm/templates/import/user_troubleshoot.html:23 msgid "Re-trying an import can fix missing items in cases such as:" msgstr "" @@ -3244,21 +3414,96 @@ msgid "The book has been added to the instance since this import" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:24 +#: bookwyrm/templates/import/user_troubleshoot.html:27 msgid "A transient error or timeout caused the external data source to be unavailable." msgstr "" #: bookwyrm/templates/import/troubleshoot.html:25 +#: bookwyrm/templates/import/user_troubleshoot.html:28 msgid "BookWyrm has been updated since this import with a bug fix" msgstr "" #: bookwyrm/templates/import/troubleshoot.html:28 +#: bookwyrm/templates/import/user_troubleshoot.html:38 msgid "Contact your admin or open an issue if you are seeing unexpected failed items." msgstr "" +#: bookwyrm/templates/import/user_import_status.html:6 +#: bookwyrm/templates/import/user_import_status.html:15 +#: bookwyrm/templates/import/user_import_status.html:26 +msgid "User Import Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:13 +msgid "User Import Retry Status" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:22 +#: bookwyrm/templates/settings/imports/imports.html:264 +msgid "User Imports" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:70 +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:79 +#: bookwyrm/templates/preferences/export-user.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:85 +msgid "Follows & Blocks" +msgstr "" + +#: bookwyrm/templates/import/user_import_status.html:144 +msgid "Imported books" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:5 +msgid "User Import Troubleshooting" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:26 +msgid "Your account was not set as an alias of the original user account" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:31 +msgid "Re-trying an import will not work in cases such as:" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:34 +msgid "A user, status, or BookWyrm server was deleted after your import file was created" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:35 +msgid "Importing statuses when your old account has been deleted" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:43 +#, python-format +msgid "Currently you are allowed to import or retry one user every %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:44 +#, python-format +msgid "You will be able to retry this import at %(next_time)s" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:65 +msgid "Relationship" +msgstr "" + +#: bookwyrm/templates/import/user_troubleshoot.html:68 +msgid "Reason" +msgstr "" + #: bookwyrm/templates/landing/invite.html:4 #: bookwyrm/templates/landing/invite.html:8 -#: bookwyrm/templates/landing/login.html:48 -#: bookwyrm/templates/landing/reactivate.html:41 +#: bookwyrm/templates/landing/login.html:50 +#: bookwyrm/templates/landing/reactivate.html:43 msgid "Create an Account" msgstr "建立帳號" @@ -3309,7 +3554,7 @@ msgid "Login" msgstr "登入" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:142 +#: bookwyrm/templates/landing/login.html:38 bookwyrm/templates/layout.html:142 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "登入" @@ -3325,22 +3570,22 @@ msgstr "" msgid "Username:" msgstr "使用者名稱:" -#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/login.html:28 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/landing/reactivate.html:23 +#: bookwyrm/templates/landing/reactivate.html:24 #: bookwyrm/templates/layout.html:132 bookwyrm/templates/ostatus/error.html:32 -#: bookwyrm/templates/preferences/2fa.html:91 +#: bookwyrm/templates/preferences/security.html:94 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "密碼:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:139 +#: bookwyrm/templates/landing/login.html:41 bookwyrm/templates/layout.html:139 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "忘記了密碼?" -#: bookwyrm/templates/landing/login.html:61 -#: bookwyrm/templates/landing/reactivate.html:54 +#: bookwyrm/templates/landing/login.html:63 +#: bookwyrm/templates/landing/reactivate.html:56 msgid "More about this site" msgstr "關於本網站的更多" @@ -3368,7 +3613,7 @@ msgstr "重設密碼" msgid "Reactivate Account" msgstr "" -#: bookwyrm/templates/landing/reactivate.html:32 +#: bookwyrm/templates/landing/reactivate.html:34 msgid "Reactivate account" msgstr "" @@ -3378,8 +3623,8 @@ msgid "%(site_name)s search" msgstr "" #: bookwyrm/templates/layout.html:39 -msgid "Search for a book, user, or list" -msgstr "搜尋書籍、使用者或列表" +msgid "Search for a book, author, user, or list" +msgstr "" #: bookwyrm/templates/layout.html:54 bookwyrm/templates/layout.html:55 msgid "Scan Barcode" @@ -3592,6 +3837,8 @@ msgid "List position" msgstr "列表位置:" #: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/connectors/connector.html:28 +#: bookwyrm/templates/settings/connectors/update.html:27 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 msgid "Set" msgstr "設定" @@ -3913,7 +4160,7 @@ msgstr "" #: bookwyrm/templates/notifications/items/link_domain.html:15 #, python-format msgid "A new link domain needs review" -msgid_plural "%(display_count)s new link domains need moderation" +msgid_plural "%(display_count)s new link domains need review" msgstr[0] "" #: bookwyrm/templates/notifications/items/mention.html:20 @@ -4082,21 +4329,21 @@ msgstr "" msgid "You have already requested to follow %(account)s" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:6 +#: bookwyrm/templates/ostatus/remote_follow.html:7 #, python-format msgid "Follow %(username)s on the fediverse" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:33 +#: bookwyrm/templates/ostatus/remote_follow.html:35 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:40 +#: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "User handle to follow from:" msgstr "" -#: bookwyrm/templates/ostatus/remote_follow.html:42 +#: bookwyrm/templates/ostatus/remote_follow.html:44 msgid "Follow!" msgstr "" @@ -4137,102 +4384,34 @@ msgstr "" msgid "Follow %(username)s" msgstr "" -#: bookwyrm/templates/ostatus/success.html:28 +#: bookwyrm/templates/ostatus/success.html:6 +#: bookwyrm/templates/ostatus/success.html:32 #, python-format msgid "You are now following %(display_name)s!" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:4 -#: bookwyrm/templates/preferences/2fa.html:7 -#: bookwyrm/templates/preferences/layout.html:24 -msgid "Two Factor Authentication" +#: bookwyrm/templates/preferences/alias_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:4 +#: bookwyrm/templates/preferences/move_user.html:7 +#: bookwyrm/templates/preferences/move_user.html:39 +msgid "Move Account" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:16 -msgid "Successfully updated 2FA settings" +#: bookwyrm/templates/preferences/alias_user.html:7 +#: bookwyrm/templates/preferences/alias_user.html:34 +msgid "Create Alias" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:24 -msgid "Write down or copy and paste these codes somewhere safe." +#: bookwyrm/templates/preferences/alias_user.html:12 +msgid "Add another account as an alias" msgstr "" -#: bookwyrm/templates/preferences/2fa.html:25 -msgid "You must use them in order, and they will not be displayed again." +#: bookwyrm/templates/preferences/alias_user.html:16 +msgid "Marking another account as an alias is required if you want to move that account to this one." msgstr "" -#: bookwyrm/templates/preferences/2fa.html:35 -msgid "Two Factor Authentication is active on your account." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:36 -#: bookwyrm/templates/preferences/disable-2fa.html:4 -#: bookwyrm/templates/preferences/disable-2fa.html:7 -msgid "Disable 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:39 -msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:40 -msgid "Generate backup codes" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:45 -msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:52 -msgid "Use setup key" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:58 -msgid "Account name:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:65 -msgid "Code:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:73 -msgid "Enter the code from your app:" -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:83 -msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:85 -msgid "Confirm your password to begin setting up 2FA." -msgstr "" - -#: bookwyrm/templates/preferences/2fa.html:95 -#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 -msgid "Set up 2FA" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:4 -#: bookwyrm/templates/preferences/move_user.html:7 -#: bookwyrm/templates/preferences/move_user.html:39 -msgid "Move Account" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:7 -#: bookwyrm/templates/preferences/alias_user.html:34 -msgid "Create Alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:12 -msgid "Add another account as an alias" -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:16 -msgid "Marking another account as an alias is required if you want to move that account to this one." -msgstr "" - -#: bookwyrm/templates/preferences/alias_user.html:19 -msgid "This is a reversable action and will not change the functionality of this account." +#: bookwyrm/templates/preferences/alias_user.html:19 +msgid "This is a reversable action and will not change the functionality of this account." msgstr "" #: bookwyrm/templates/preferences/alias_user.html:25 @@ -4310,6 +4489,12 @@ msgstr "" msgid "Deleting your account cannot be undone. The username will not be available to register in the future." msgstr "" +#: bookwyrm/templates/preferences/disable-2fa.html:4 +#: bookwyrm/templates/preferences/disable-2fa.html:7 +#: bookwyrm/templates/preferences/security.html:39 +msgid "Disable 2FA" +msgstr "" + #: bookwyrm/templates/preferences/disable-2fa.html:12 msgid "Disable Two Factor Authentication" msgstr "" @@ -4339,12 +4524,12 @@ msgstr "使用者資料" #: bookwyrm/templates/preferences/edit_user.html:64 #: bookwyrm/templates/settings/site.html:11 #: bookwyrm/templates/settings/site.html:89 -#: bookwyrm/templates/setup/config.html:91 +#: bookwyrm/templates/setup/config.html:85 msgid "Display" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:112 +#: bookwyrm/templates/preferences/edit_user.html:118 msgid "Privacy" msgstr "" @@ -4353,94 +4538,157 @@ msgid "Show reading goal prompt in feed" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:75 -msgid "Show suggested users" +msgid "Show ratings" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show suggested users" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:87 msgid "Show this account in suggested users" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:85 +#: bookwyrm/templates/preferences/edit_user.html:91 #, python-format msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "你的帳號會顯示在 目錄 中,並可能受其它 BookWyrm 使用者推薦。" -#: bookwyrm/templates/preferences/edit_user.html:89 +#: bookwyrm/templates/preferences/edit_user.html:95 msgid "Preferred Timezone: " msgstr "偏好時區:" -#: bookwyrm/templates/preferences/edit_user.html:101 +#: bookwyrm/templates/preferences/edit_user.html:107 msgid "Theme:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:117 +#: bookwyrm/templates/preferences/edit_user.html:123 msgid "Manually approve followers" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:123 +#: bookwyrm/templates/preferences/edit_user.html:129 msgid "Hide followers and following on profile" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:128 +#: bookwyrm/templates/preferences/edit_user.html:134 msgid "Default post privacy:" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/preferences/edit_user.html:142 #, python-format msgid "Looking for shelf privacy? You can set a separate visibility level for each of your shelves. Go to Your Books, pick a shelf from the tab bar, and click \"Edit shelf.\"" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:5 -#: bookwyrm/templates/preferences/export-user.html:8 +#: bookwyrm/templates/preferences/export-user.html:6 +#: bookwyrm/templates/preferences/export-user.html:9 #: bookwyrm/templates/preferences/layout.html:55 msgid "Export BookWyrm Account" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:14 +#: bookwyrm/templates/preferences/export-user.html:15 msgid "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:17 -msgid "

    Your file will include:

    • User profile
    • Most user settings
    • Reading goals
    • Shelves
    • Reading history
    • Book reviews
    • Statuses
    • Your own lists and saved lists
    • Which users you follow and block

    Your file will not include:

    • Direct messages
    • Replies to your statuses
    • Groups
    • Favorites
    " +#: bookwyrm/templates/preferences/export-user.html:19 +msgid "Your file will include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:22 +msgid "Most user settings" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:28 +msgid "Your own lists and saved lists" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:29 +msgid "Which users you follow and block" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:33 +msgid "Your file will not include:" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:35 +msgid "Direct messages" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:36 +msgid "Replies to your statuses" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:43 +#: bookwyrm/templates/preferences/export-user.html:38 +msgid "Favorites" +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:42 msgid "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:46 +#: bookwyrm/templates/preferences/export-user.html:45 msgid "If you wish to migrate any statuses (comments, reviews, or quotes) you must either set the account you are moving to as an alias of this one, or move this account to the new account, before you import your user data." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:51 +#: bookwyrm/templates/preferences/export-user.html:50 +msgid "New user exports are currently disabled." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:54 +#, python-format +msgid "User exports settings can be changed from the Imports page in the Admin dashboard." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:61 #, python-format msgid "You will be able to create a new export file at %(next_available)s" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:60 +#: bookwyrm/templates/preferences/export-user.html:72 +#, python-format +msgid "On average, recent exports have taken %(hours)s hours." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:76 +#, python-format +msgid "On average, recent exports have taken %(minutes)s minutes." +msgstr "" + +#: bookwyrm/templates/preferences/export-user.html:88 msgid "Create user export file" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:67 +#: bookwyrm/templates/preferences/export-user.html:95 msgid "Recent Exports" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:69 +#: bookwyrm/templates/preferences/export-user.html:97 msgid "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." msgstr "" -#: bookwyrm/templates/preferences/export-user.html:75 +#: bookwyrm/templates/preferences/export-user.html:100 +#, python-format +msgid "Export files will be deleted after %(expiry_hours)s hour." +msgid_plural "Export files will be deleted after %(expiry_hours)s hours." +msgstr[0] "" + +#: bookwyrm/templates/preferences/export-user.html:110 +#: bookwyrm/templates/preferences/security.html:126 +#: bookwyrm/templates/settings/files.html:136 msgid "Date" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:81 +#: bookwyrm/templates/preferences/export-user.html:116 msgid "Size" msgstr "" -#: bookwyrm/templates/preferences/export-user.html:125 +#: bookwyrm/templates/preferences/export-user.html:160 msgid "Download your export" msgstr "" +#: bookwyrm/templates/preferences/export-user.html:164 +msgid "Archive is no longer available" +msgstr "" + #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 #: bookwyrm/templates/preferences/layout.html:47 @@ -4459,6 +4707,10 @@ msgstr "" msgid "Account" msgstr "帳號" +#: bookwyrm/templates/preferences/layout.html:24 +msgid "Security Settings" +msgstr "" + #: bookwyrm/templates/preferences/layout.html:32 msgid "Move Account" msgstr "" @@ -4494,6 +4746,124 @@ msgstr "" msgid "Enter the username for the account you want to move to e.g. user@example.com :" msgstr "" +#: bookwyrm/templates/preferences/security.html:4 +#: bookwyrm/templates/preferences/security.html:7 +msgid "Account Security" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:13 +msgid "Two Factor Authentication" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:19 +msgid "Successfully updated 2FA settings" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:27 +msgid "Write down or copy and paste these codes somewhere safe." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:28 +msgid "You must use them in order, and they will not be displayed again." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:38 +msgid "Two Factor Authentication is active on your account." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:42 +msgid "You can generate backup codes to use in case you do not have access to your authentication app. If you generate new codes, any backup codes previously generated will no longer work." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:43 +msgid "Generate backup codes" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:48 +msgid "Scan the QR code with your authentication app and then enter the code from your app below to confirm your app is set up." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:55 +msgid "Use setup key" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:61 +msgid "Account name:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:68 +msgid "Code:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:76 +msgid "Enter the code from your app:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:86 +msgid "You can make your account more secure by using Two Factor Authentication (2FA). This will require you to enter a one-time code using a phone app like Authy, Google Authenticator or Microsoft Authenticator each time you log in." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:88 +msgid "Confirm your password to begin setting up 2FA." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:98 +#: bookwyrm/templates/two_factor_auth/two_factor_prompt.html:37 +msgid "Set up 2FA" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:111 +msgid "Sessions" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:114 +msgid "Some legacy sessions may not be displayed." +msgstr "" + +#: bookwyrm/templates/preferences/security.html:119 +msgid "You are logged in to the following sessions:" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:126 +msgid "Date first logged in" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP address" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:127 +msgid "IP" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "Operating System" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:128 +msgid "OS" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Web Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:129 +msgid "Browser" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:143 +msgid "You" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:147 +msgid "Log Out" +msgstr "" + +#: bookwyrm/templates/preferences/security.html:161 +msgid "Currently your logged-in sessions are unable to be displayed." +msgstr "" + #: bookwyrm/templates/reading_progress/finish.html:5 #, python-format msgid "Finish \"%(book_title)s\"" @@ -4539,6 +4909,7 @@ msgstr "已開始閱讀" #: bookwyrm/templates/readthrough/readthrough_form.html:18 #: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/settings/files.html:139 msgid "Progress" msgstr "進度" @@ -4666,8 +5037,8 @@ msgstr "搜尋請求" msgid "Search type" msgstr "搜尋類別" -#: bookwyrm/templates/search/layout.html:24 -#: bookwyrm/templates/search/layout.html:47 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:51 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: bookwyrm/templates/settings/federation/instance_list.html:52 #: bookwyrm/templates/settings/layout.html:36 @@ -4677,12 +5048,12 @@ msgstr "搜尋類別" msgid "Users" msgstr "使用者" -#: bookwyrm/templates/search/layout.html:59 +#: bookwyrm/templates/search/layout.html:63 #, python-format msgid "No results found for \"%(query)s\"" msgstr "沒有找到 \"%(query)s\" 的搜尋結果" -#: bookwyrm/templates/search/layout.html:61 +#: bookwyrm/templates/search/layout.html:65 #, python-format msgid "%(result_count)s result found" msgid_plural "%(result_count)s results found" @@ -4703,7 +5074,7 @@ msgstr "編輯" #: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/edit_announcement.html:15 -#: bookwyrm/templates/settings/layout.html:99 +#: bookwyrm/templates/settings/layout.html:111 msgid "Announcements" msgstr "公告" @@ -4721,13 +5092,13 @@ msgstr "否" #: bookwyrm/templates/settings/announcements/announcement.html:57 #: bookwyrm/templates/settings/announcements/edit_announcement.html:79 -#: bookwyrm/templates/settings/dashboard/dashboard.html:80 +#: bookwyrm/templates/settings/dashboard/dashboard.html:84 msgid "Start date:" msgstr "開始日期:" #: bookwyrm/templates/settings/announcements/announcement.html:62 #: bookwyrm/templates/settings/announcements/edit_announcement.html:89 -#: bookwyrm/templates/settings/dashboard/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:90 msgid "End date:" msgstr "結束日期:" @@ -4796,7 +5167,6 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 -#: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" msgstr "" @@ -4809,35 +5179,43 @@ msgid "Users or statuses that have already been reported (regardless of whether msgstr "" #: bookwyrm/templates/settings/automod/rules.html:26 +#: bookwyrm/templates/settings/files.html:28 msgid "Schedule:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:33 +#: bookwyrm/templates/settings/files.html:35 msgid "Last run:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:40 +#: bookwyrm/templates/settings/files.html:42 msgid "Total run count:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:47 +#: bookwyrm/templates/settings/files.html:49 msgid "Enabled:" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:59 +#: bookwyrm/templates/settings/files.html:61 msgid "Delete schedule" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:63 +#: bookwyrm/templates/settings/files.html:65 msgid "Run now" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:64 +#: bookwyrm/templates/settings/files.html:66 msgid "Last run date will not be updated" msgstr "" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 +#: bookwyrm/templates/settings/files.html:96 msgid "Schedule scan" msgstr "" @@ -4882,6 +5260,7 @@ msgstr "" #: bookwyrm/templates/settings/celery.html:6 #: bookwyrm/templates/settings/celery.html:8 +#: bookwyrm/templates/settings/layout.html:86 msgid "Celery Status" msgstr "" @@ -4910,6 +5289,7 @@ msgid "Import triggered" msgstr "" #: bookwyrm/templates/settings/celery.html:57 +#: bookwyrm/templates/settings/layout.html:98 msgid "Connectors" msgstr "" @@ -4953,8 +5333,9 @@ msgid "Active Tasks" msgstr "" #: bookwyrm/templates/settings/celery.html:131 -#: bookwyrm/templates/settings/imports/imports.html:146 -#: bookwyrm/templates/settings/imports/imports.html:236 +#: bookwyrm/templates/settings/imports/imports.html:195 +#: bookwyrm/templates/settings/imports/imports.html:285 +#: bookwyrm/templates/settings/schedules.html:95 msgid "ID" msgstr "" @@ -4967,6 +5348,8 @@ msgid "Run time" msgstr "" #: bookwyrm/templates/settings/celery.html:134 +#: bookwyrm/templates/settings/connectors/connector.html:22 +#: bookwyrm/templates/settings/connectors/update.html:21 msgid "Priority" msgstr "" @@ -4999,6 +5382,66 @@ msgstr "" msgid "Errors" msgstr "" +#: bookwyrm/templates/settings/connectors/available.html:15 +msgid "Finna.fi is a search service that collects material from hundreds of Finnish organisations under one roof." +msgstr "" + +#: bookwyrm/templates/settings/connectors/available.html:28 +msgid "Create new connector" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:35 +#: bookwyrm/templates/settings/connectors/update.html:33 +#: bookwyrm/templates/settings/users/user_info.html:87 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:50 +#: bookwyrm/templates/settings/connectors/update.html:47 +msgid "Deactivate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connector.html:61 +#: bookwyrm/templates/settings/connectors/update.html:58 +msgid "Activate" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:4 +#: bookwyrm/templates/settings/connectors/connectors.html:6 +msgid "Connector Settings" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:11 +msgid "Connectors are sources of data about books and authors." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:12 +msgid "The priority determines the order in which search results appear. The highest priority is 1. The default priority is 2." +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +msgid "Connector settings only determine whether a connector will be used to deliver search results. To manage more interactions with other federated servers, including domain blocks, see" +msgstr "" + +#: bookwyrm/templates/settings/connectors/connectors.html:14 +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "聯合實例" + +#: bookwyrm/templates/settings/connectors/update.html:66 +msgid "should be updated. Check recent release notes for more information." +msgstr "" + +#: bookwyrm/templates/settings/connectors/update.html:76 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 +msgid "Update" +msgstr "" + #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:28 @@ -5006,7 +5449,7 @@ msgid "Dashboard" msgstr "" #: bookwyrm/templates/settings/dashboard/dashboard.html:15 -#: bookwyrm/templates/settings/dashboard/dashboard.html:109 +#: bookwyrm/templates/settings/dashboard/dashboard.html:113 msgid "Total users" msgstr "" @@ -5015,40 +5458,36 @@ msgstr "" msgid "Active this month" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:27 -msgid "Statuses" -msgstr "" - #: bookwyrm/templates/settings/dashboard/dashboard.html:33 #: bookwyrm/templates/settings/dashboard/works_chart.html:11 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:74 +#: bookwyrm/templates/settings/dashboard/dashboard.html:78 msgid "Instance Activity" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:92 +#: bookwyrm/templates/settings/dashboard/dashboard.html:96 msgid "Interval:" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:96 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:97 +#: bookwyrm/templates/settings/dashboard/dashboard.html:101 msgid "Weeks" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:115 +#: bookwyrm/templates/settings/dashboard/dashboard.html:119 msgid "User signup activity" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:121 +#: bookwyrm/templates/settings/dashboard/dashboard.html:125 msgid "Status activity" msgstr "" -#: bookwyrm/templates/settings/dashboard/dashboard.html:127 +#: bookwyrm/templates/settings/dashboard/dashboard.html:131 msgid "Works created" msgstr "" @@ -5060,8 +5499,12 @@ msgstr "" msgid "Statuses posted" msgstr "" -#: bookwyrm/templates/settings/dashboard/user_chart.html:11 -msgid "Total" +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:12 +msgid "Would you like to automatically check for new BookWyrm releases? (recommended)" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/warnings/check_for_updates.html:20 +msgid "Schedule checks" msgstr "" #: bookwyrm/templates/settings/dashboard/warnings/domain_review.html:9 @@ -5140,7 +5583,7 @@ msgstr "" #: bookwyrm/templates/settings/email_config.html:6 #: bookwyrm/templates/settings/email_config.html:8 -#: bookwyrm/templates/settings/layout.html:90 +#: bookwyrm/templates/settings/layout.html:94 msgid "Email Configuration" msgstr "" @@ -5153,7 +5596,7 @@ msgid "Successfully sent test email." msgstr "" #: bookwyrm/templates/settings/email_config.html:32 -#: bookwyrm/templates/setup/config.html:102 +#: bookwyrm/templates/setup/config.html:96 msgid "Email sender:" msgstr "" @@ -5201,15 +5644,6 @@ msgstr "" msgid "Add instance" msgstr "新增實例" -#: bookwyrm/templates/settings/federation/edit_instance.html:12 -#: bookwyrm/templates/settings/federation/instance.html:24 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 -#: bookwyrm/templates/settings/federation/instance_list.html:3 -#: bookwyrm/templates/settings/federation/instance_list.html:5 -#: bookwyrm/templates/settings/layout.html:47 -msgid "Federated Instances" -msgstr "聯合實例" - #: bookwyrm/templates/settings/federation/edit_instance.html:28 #: bookwyrm/templates/settings/federation/instance_blocklist.html:28 msgid "Import block list" @@ -5285,12 +5719,6 @@ msgstr "備註" msgid "No notes" msgstr "" -#: bookwyrm/templates/settings/federation/instance.html:116 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "封鎖" - #: bookwyrm/templates/settings/federation/instance.html:117 msgid "All users from this instance will be deactivated." msgstr "來自此實例的所有使用者將會被停用。" @@ -5343,6 +5771,49 @@ msgstr "軟體" msgid "No instances found" msgstr "" +#: bookwyrm/templates/settings/files.html:7 +#: bookwyrm/templates/settings/files.html:11 +msgid "Files maintenance" +msgstr "" + +#: bookwyrm/templates/settings/files.html:17 +msgid "Schedule file deletion" +msgstr "" + +#: bookwyrm/templates/settings/files.html:21 +msgid "This job deletes uploaded user export and import files that have reached the expiry age." +msgstr "" + +#: bookwyrm/templates/settings/files.html:102 +msgid "Export file expiration" +msgstr "" + +#: bookwyrm/templates/settings/files.html:109 +msgid "Maximum age of export files, in hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:122 +msgid "Files older than this will be deleted." +msgstr "" + +#: bookwyrm/templates/settings/files.html:125 +msgid "Set expiry hours" +msgstr "" + +#: bookwyrm/templates/settings/files.html:138 +msgid "Expired files" +msgstr "" + +#: bookwyrm/templates/settings/files.html:186 +#: bookwyrm/templates/settings/imports/imports.html:184 +#: bookwyrm/templates/settings/imports/imports.html:274 +msgid "Completed" +msgstr "" + +#: bookwyrm/templates/settings/files.html:210 +msgid "Successfully updated expiry time" +msgstr "" + #: bookwyrm/templates/settings/imports/complete_import_modal.html:4 #: bookwyrm/templates/settings/imports/complete_user_import_modal.html:4 msgid "Stop import?" @@ -5389,7 +5860,7 @@ msgid "Some users might try to import a large number of books, which you want to msgstr "" #: bookwyrm/templates/settings/imports/imports.html:76 -#: bookwyrm/templates/settings/imports/imports.html:108 +#: bookwyrm/templates/settings/imports/imports.html:135 msgid "Set the value to 0 to not enforce any limit." msgstr "" @@ -5409,62 +5880,81 @@ msgstr "" msgid "Set limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:96 +#: bookwyrm/templates/settings/imports/imports.html:98 +msgid "Disable starting new user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:109 +msgid "This is only intended to be used when things have gone very wrong with exports and you need to pause the feature while addressing issues." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:110 +msgid "While exports are disabled, users will not be allowed to start new user exports, but existing exports will not be affected." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:115 +msgid "Disable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:123 msgid "Limit how often users can import and export" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:107 +#: bookwyrm/templates/settings/imports/imports.html:134 msgid "Some users might try to run user imports or exports very frequently, which you want to limit." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:111 -msgid "Restrict user imports and exports to once every " +#: bookwyrm/templates/settings/imports/imports.html:138 +msgid "Limit how often users can import and export user data" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:113 +#: bookwyrm/templates/settings/imports/imports.html:140 msgid "hours" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:117 +#: bookwyrm/templates/settings/imports/imports.html:144 msgid "Change limit" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:125 -msgid "Book Imports" +#: bookwyrm/templates/settings/imports/imports.html:159 +msgid "Users are currently unable to start new user exports. This is the default setting." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:135 -#: bookwyrm/templates/settings/imports/imports.html:225 -msgid "Completed" +#: bookwyrm/templates/settings/imports/imports.html:161 +msgid "It is not currently possible to provide user exports when using Azure storage." +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:167 +msgid "Enable user exports" +msgstr "" + +#: bookwyrm/templates/settings/imports/imports.html:174 +msgid "Book Imports" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:149 -#: bookwyrm/templates/settings/imports/imports.html:239 +#: bookwyrm/templates/settings/imports/imports.html:198 +#: bookwyrm/templates/settings/imports/imports.html:288 msgid "User" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:158 -#: bookwyrm/templates/settings/imports/imports.html:248 +#: bookwyrm/templates/settings/imports/imports.html:207 +#: bookwyrm/templates/settings/imports/imports.html:297 msgid "Date Updated" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:165 +#: bookwyrm/templates/settings/imports/imports.html:214 msgid "Pending items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:168 +#: bookwyrm/templates/settings/imports/imports.html:217 msgid "Successful items" msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:203 -#: bookwyrm/templates/settings/imports/imports.html:295 +#: bookwyrm/templates/settings/imports/imports.html:252 +#: bookwyrm/templates/settings/imports/imports.html:344 msgid "No matching imports found." msgstr "" -#: bookwyrm/templates/settings/imports/imports.html:215 -msgid "User Imports" -msgstr "" - #: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 @@ -5628,6 +6118,10 @@ msgstr "" msgid "Reports" msgstr "舉報" +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-Moderation Rules" +msgstr "" + #: bookwyrm/templates/settings/layout.html:73 #: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:7 @@ -5638,22 +6132,26 @@ msgstr "" msgid "System" msgstr "" -#: bookwyrm/templates/settings/layout.html:86 -msgid "Celery status" +#: bookwyrm/templates/settings/layout.html:90 +msgid "Scheduled Tasks" +msgstr "" + +#: bookwyrm/templates/settings/layout.html:102 +msgid "Files Maintenance" msgstr "" -#: bookwyrm/templates/settings/layout.html:95 +#: bookwyrm/templates/settings/layout.html:107 msgid "Instance Settings" msgstr "實例設定" -#: bookwyrm/templates/settings/layout.html:103 +#: bookwyrm/templates/settings/layout.html:115 #: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:6 msgid "Site Settings" msgstr "網站設定" -#: bookwyrm/templates/settings/layout.html:109 -#: bookwyrm/templates/settings/layout.html:112 +#: bookwyrm/templates/settings/layout.html:121 +#: bookwyrm/templates/settings/layout.html:124 #: bookwyrm/templates/settings/registration.html:4 #: bookwyrm/templates/settings/registration.html:6 #: bookwyrm/templates/settings/registration_limited.html:4 @@ -5661,7 +6159,7 @@ msgstr "網站設定" msgid "Registration" msgstr "註冊" -#: bookwyrm/templates/settings/layout.html:118 +#: bookwyrm/templates/settings/layout.html:130 #: bookwyrm/templates/settings/site.html:107 #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 @@ -5867,6 +6365,61 @@ msgstr "已解決" msgid "No reports found." msgstr "沒有找到舉報" +#: bookwyrm/templates/settings/schedules.html:7 +#: bookwyrm/templates/settings/schedules.html:11 +msgid "Scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:17 +#: bookwyrm/templates/settings/schedules.html:101 +msgid "Tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:22 +msgid "Name" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:25 +msgid "Celery task" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:28 +msgid "Date changed" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:31 +msgid "Last run at" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:34 +#: bookwyrm/templates/settings/schedules.html:98 +msgid "Schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:37 +msgid "Schedule ID" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:40 +msgid "Enabled" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:73 +msgid "Un-schedule" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:81 +msgid "No scheduled tasks" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:90 +msgid "Schedules" +msgstr "" + +#: bookwyrm/templates/settings/schedules.html:119 +msgid "No schedules found" +msgstr "" + #: bookwyrm/templates/settings/site.html:10 #: bookwyrm/templates/settings/site.html:43 msgid "Instance Info" @@ -6112,10 +6665,6 @@ msgstr "" msgid "Discoverable:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:87 -msgid "Deactivation reason:" -msgstr "" - #: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "實例詳情" @@ -6209,7 +6758,7 @@ msgid "Your domain appears to be misconfigured. It should not include protocol o msgstr "" #: bookwyrm/templates/setup/config.html:42 -msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." +msgid "You are running BookWyrm with localhost. This should never be used in a production environment." msgstr "" #: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:44 @@ -6220,39 +6769,39 @@ msgstr "設定" msgid "Instance domain:" msgstr "" -#: bookwyrm/templates/setup/config.html:63 -msgid "Protocol:" +#: bookwyrm/templates/setup/config.html:62 +msgid "Instance base URL:" msgstr "" -#: bookwyrm/templates/setup/config.html:81 +#: bookwyrm/templates/setup/config.html:75 msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:95 +#: bookwyrm/templates/setup/config.html:89 msgid "Default interface language:" msgstr "" -#: bookwyrm/templates/setup/config.html:109 +#: bookwyrm/templates/setup/config.html:103 msgid "Enable preview images:" msgstr "" -#: bookwyrm/templates/setup/config.html:116 +#: bookwyrm/templates/setup/config.html:110 msgid "Enable image thumbnails:" msgstr "" -#: bookwyrm/templates/setup/config.html:128 +#: bookwyrm/templates/setup/config.html:122 msgid "Does everything look right?" msgstr "" -#: bookwyrm/templates/setup/config.html:130 +#: bookwyrm/templates/setup/config.html:125 msgid "This is your last chance to set your domain and protocol." msgstr "" -#: bookwyrm/templates/setup/config.html:144 +#: bookwyrm/templates/setup/config.html:139 msgid "You can change your instance settings in the .env file on your server." msgstr "" -#: bookwyrm/templates/setup/config.html:148 +#: bookwyrm/templates/setup/config.html:143 msgid "View installation instructions" msgstr "" @@ -6269,7 +6818,7 @@ msgid "Need help?" msgstr "" #: bookwyrm/templates/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/shelf/shelf.html:74 +#: bookwyrm/templates/shelf/shelf.html:79 msgid "Create shelf" msgstr "建立書架" @@ -6277,58 +6826,71 @@ msgstr "建立書架" msgid "Edit Shelf" msgstr "編輯書架" -#: bookwyrm/templates/shelf/shelf.html:41 -#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templates/shelf/shelf.html:46 +#: bookwyrm/templatetags/shelf_tags.py:13 bookwyrm/views/shelf/shelf.py:61 msgid "All books" msgstr "所有書目" -#: bookwyrm/templates/shelf/shelf.html:66 +#: bookwyrm/templates/shelf/shelf.html:71 msgid "Import Books" msgstr "匯入書目" -#: bookwyrm/templates/shelf/shelf.html:99 +#: bookwyrm/templates/shelf/shelf.html:104 #, python-format msgid "%(formatted_count)s book" msgid_plural "%(formatted_count)s books" msgstr[0] "" -#: bookwyrm/templates/shelf/shelf.html:106 +#: bookwyrm/templates/shelf/shelf.html:110 #, python-format msgid "(showing %(start)s-%(end)s)" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:118 +#: bookwyrm/templates/shelf/shelf.html:124 msgid "Edit shelf" msgstr "編輯書架" -#: bookwyrm/templates/shelf/shelf.html:126 +#: bookwyrm/templates/shelf/shelf.html:132 msgid "Delete shelf" msgstr "刪除書架" -#: bookwyrm/templates/shelf/shelf.html:154 -#: bookwyrm/templates/shelf/shelf.html:180 +#: bookwyrm/templates/shelf/shelf.html:160 +#: bookwyrm/templates/shelf/shelf.html:186 msgid "Shelved" msgstr "上架時間" -#: bookwyrm/templates/shelf/shelf.html:155 -#: bookwyrm/templates/shelf/shelf.html:183 +#: bookwyrm/templates/shelf/shelf.html:161 +#: bookwyrm/templates/shelf/shelf.html:189 msgid "Started" msgstr "開始時間" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Finished" msgstr "完成時間" -#: bookwyrm/templates/shelf/shelf.html:156 -#: bookwyrm/templates/shelf/shelf.html:186 +#: bookwyrm/templates/shelf/shelf.html:162 +#: bookwyrm/templates/shelf/shelf.html:192 msgid "Until" msgstr "" -#: bookwyrm/templates/shelf/shelf.html:212 +#: bookwyrm/templates/shelf/shelf.html:221 +#, python-format +msgid "We couldn't find any books that matched %(shelves_filter_query)s" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:225 msgid "This shelf is empty." msgstr "此書架是空的。" +#: bookwyrm/templates/shelf/shelves_filter_field.html:6 +msgid "Filter by keyword" +msgstr "" + +#: bookwyrm/templates/shelf/shelves_filter_field.html:7 +msgid "Enter text here" +msgstr "" + #: bookwyrm/templates/snippets/add_to_group_button.html:16 msgid "Invite" msgstr "" @@ -6429,10 +6991,6 @@ msgstr "前有劇透!" msgid "Comment:" msgstr "評論:" -#: bookwyrm/templates/snippets/create_status/post_options_block.html:19 -msgid "Update" -msgstr "" - #: bookwyrm/templates/snippets/create_status/post_options_block.html:21 msgid "Post" msgstr "釋出" @@ -6458,7 +7016,7 @@ msgstr "" msgid "At percent:" msgstr "" -#: bookwyrm/templates/snippets/create_status/quotation.html:69 +#: bookwyrm/templates/snippets/create_status/quotation.html:68 msgid "to" msgstr "" @@ -6503,10 +7061,6 @@ msgstr "使用過濾器" msgid "Follow @%(username)s" msgstr "" -#: bookwyrm/templates/snippets/follow_button.html:22 -msgid "Follow" -msgstr "關注" - #: bookwyrm/templates/snippets/follow_button.html:31 msgid "Undo follow request" msgstr "撤回關注請求" @@ -6539,7 +7093,7 @@ msgid "BookWyrm's source code is freely available. You can contribute or report msgstr "BookWyrm 是免費開源軟體,你可以在 GitHub 貢獻或回報問題。" #: bookwyrm/templates/snippets/form_rate_stars.html:20 -#: bookwyrm/templates/snippets/stars.html:23 +#: bookwyrm/templates/snippets/stars.html:38 msgid "No rating" msgstr "沒有評價" @@ -6550,7 +7104,7 @@ msgid_plural "%(half_rating)s stars" msgstr[0] "" #: bookwyrm/templates/snippets/form_rate_stars.html:64 -#: bookwyrm/templates/snippets/stars.html:7 +#: bookwyrm/templates/snippets/stars.html:20 #, python-format msgid "%(rating)s star" msgid_plural "%(rating)s stars" @@ -6775,6 +7329,10 @@ msgstr "" msgid "Finish reading" msgstr "完成閱讀" +#: bookwyrm/templates/snippets/stars.html:13 +msgid "Show rating" +msgstr "" + #: bookwyrm/templates/snippets/status/content_status.html:69 msgid "Show status" msgstr "" @@ -7128,8 +7686,9 @@ msgid "View profile and more" msgstr "" #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 -msgid "File exceeds maximum size: 10MB" -msgstr "檔案超過了最大大小: 10MB" +#, python-format +msgid "File exceeds maximum size: %(max_size)sMB" +msgstr "" #: bookwyrm/templatetags/list_page_tags.py:14 #, python-format @@ -7147,24 +7706,8 @@ msgstr[0] "" msgid "%(title)s: %(subtitle)s" msgstr "" -#: bookwyrm/views/rss_feed.py:35 -#, python-brace-format -msgid "Status updates from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:80 -#, python-brace-format -msgid "Reviews from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:122 -#, python-brace-format -msgid "Quotes from {obj.display_name}" -msgstr "" - -#: bookwyrm/views/rss_feed.py:164 -#, python-brace-format -msgid "Comments from {obj.display_name}" +#: bookwyrm/templatetags/utilities.py:133 +msgid "a new user account" msgstr "" #: bookwyrm/views/updates.py:45 diff --git a/nginx/99-autoreload.sh b/nginx/99-autoreload.sh new file mode 100755 index 0000000000..1977ab52bd --- /dev/null +++ b/nginx/99-autoreload.sh @@ -0,0 +1,5 @@ +#!/bin/bash +while true; do + sleep 1d + nginx -t && nginx -s reload +done & diff --git a/nginx/development b/nginx/development deleted file mode 100644 index f7443968c3..0000000000 --- a/nginx/development +++ /dev/null @@ -1,91 +0,0 @@ -include /etc/nginx/conf.d/server_config; - -upstream web { - server web:8000; -} - -server { - access_log /var/log/nginx/access.log cache_log; - - listen 80; - - sendfile on; - tcp_nopush on; - tcp_nodelay on; - keepalive_timeout 65; - types_hash_max_size 2048; - #include /etc/nginx/mime.types; - #default_type application/octet-stream; - - gzip on; - gzip_disable "msie6"; - - proxy_read_timeout 1800s; - chunked_transfer_encoding on; - - # store responses to anonymous users for up to 1 minute - proxy_cache bookwyrm_cache; - proxy_cache_valid any 1m; - add_header X-Cache-Status $upstream_cache_status; - - # ignore the set cookie header when deciding to - # store a response in the cache - proxy_ignore_headers Cache-Control Set-Cookie Expires; - - # PUT requests always bypass the cache - # logged in sessions also do not populate the cache - # to avoid serving personal data to anonymous users - proxy_cache_methods GET HEAD; - proxy_no_cache $cookie_sessionid; - proxy_cache_bypass $cookie_sessionid; - - # tell the web container the address of the outside client - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header Host $host; - proxy_redirect off; - - # rate limit the login or password reset pages - location ~ ^/(login[^-/]|password-reset|resend-link|2fa-check) { - limit_req zone=loginlimit; - proxy_pass http://web; - } - - # do not log periodic polling requests from logged in users - location /api/updates/ { - access_log off; - proxy_pass http://web; - } - - # forward any cache misses or bypass to the web container - location / { - proxy_pass http://web; - } - - # directly serve static files from the - # bookwyrm filesystem using sendfile. - # make the logs quieter by not reporting these requests - location /static/ { - root /app; - try_files $uri =404; - add_header X-Cache-Status STATIC; - access_log off; - } - - # same with image files not in static folder - location /images/ { - location ~ \.(bmp|ico|jpg|jpeg|png|svg|tif|tiff|webp)$ { - root /app; - try_files $uri =404; - add_header X-Cache-Status STATIC; - access_log off; - } - # block access to any non-image files from images - return 403; - } - - # monitor the celery queues with flower, no caching enabled - location /flower/ { - proxy_pass http://flower:8888; - proxy_cache_bypass 1; - } -} diff --git a/nginx/https.conf b/nginx/https.conf new file mode 100644 index 0000000000..555fe6cbf8 --- /dev/null +++ b/nginx/https.conf @@ -0,0 +1,82 @@ +include /etc/nginx/conf.d/server_config; + +upstream web { + server web:8000; +} +upstream flower{ + server flower:8888; +} + +server { + listen [::]:80; + listen 80; + + include /etc/nginx/conf.d/server_name; + + location ~ /.well-known/acme-challenge { + allow all; + root /var/www/certbot; + } + + # redirect http to https + return 301 https://${DOMAIN}$request_uri; +} + + +server { + access_log /var/log/nginx/access.log cache_log; + + listen [::]:443 ssl; + listen 443 ssl; + + http2 on; + + include /etc/nginx/conf.d/server_name; + + if ($host != "${DOMAIN}") { + return 301 $scheme://${DOMAIN}$request_uri; + } + + # SSL code + ssl_certificate /etc/nginx/ssl/live/${DOMAIN}/fullchain.pem; + ssl_certificate_key /etc/nginx/ssl/live/${DOMAIN}/privkey.pem; + + location ~ /.well-known/acme-challenge { + allow all; + root /var/www/certbot; + } + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + #include /etc/nginx/mime.types; + #default_type application/octet-stream; + + gzip on; + gzip_disable "msie6"; + + proxy_read_timeout 1800s; + chunked_transfer_encoding on; + + # store responses to anonymous users for up to 1 minute + proxy_cache bookwyrm_cache; + proxy_cache_valid any 1m; + add_header X-Cache-Status $upstream_cache_status; + + # ignore the set cookie header when deciding to + # store a response in the cache + proxy_ignore_headers Cache-Control Set-Cookie Expires; + + # PUT requests always bypass the cache + # logged in sessions also do not populate the cache + # to avoid serving personal data to anonymous users + proxy_cache_methods GET HEAD; + proxy_no_cache $cookie_sessionid; + proxy_cache_bypass $cookie_sessionid; + + include /etc/nginx/conf.d/locations; + +} + diff --git a/nginx/locations b/nginx/locations new file mode 100644 index 0000000000..48c4d87a7e --- /dev/null +++ b/nginx/locations @@ -0,0 +1,51 @@ + +# tell the web container the address of the outside client +proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; +# We tell that client should be behind https regardless if nginx is in reverse-proxy mode or https +# mode +proxy_set_header X-Forwarded-Proto https; +proxy_set_header Host $host; +proxy_redirect off; + +location ~ ^/(login[^-/]|password-reset|resend-link|2fa-check) { + limit_req zone=loginlimit; + proxy_pass http://web; +} + +# do not log periodic polling requests from logged in users +location /api/updates/ { + access_log off; + proxy_pass http://web; +} + +location / { + proxy_pass http://web; +} + +# directly serve static files from the +# bookwyrm filesystem using sendfile. +# make the logs quieter by not reporting these requests +location /static/ { + root /app; + try_files $uri =404; + add_header X-Cache-Status STATIC; + access_log off; +} + +# same with image files not in static folder +location /images/ { + location ~ \.(bmp|ico|jpg|jpeg|png|svg|tif|tiff|webp)$ { + root /app; + try_files $uri =404; + add_header X-Cache-Status STATIC; + access_log off; + } + # block access to any non-image files from images + return 403; +} + +# monitor the celery queues with flower, no caching enabled +location /flower/ { + proxy_pass http://flower; + proxy_cache_bypass 1; +} diff --git a/nginx/production b/nginx/production deleted file mode 100644 index a5e910b4b0..0000000000 --- a/nginx/production +++ /dev/null @@ -1,146 +0,0 @@ -include /etc/nginx/conf.d/server_config; - -upstream web { - server web:8000; -} - -server { - listen [::]:80; - listen 80; - - server_name your-domain.com www.your-domain.com; - - location ~ /.well-known/acme-challenge { - allow all; - root /var/www/certbot; - } - -# # redirect http to https -# return 301 https://your-domain.com$request_uri; -} - - -# server { -# access_log /var/log/nginx/access.log cache_log; -# -# listen [::]:443 ssl http2; -# listen 443 ssl http2; -# -# server_name your-domain.com; -# -# client_max_body_size 3M; -# -# if ($host != "your-domain.com") { -# return 301 $scheme://your-domain.com$request_uri; -# } -# -# # SSL code -# ssl_certificate /etc/nginx/ssl/live/your-domain.com/fullchain.pem; -# ssl_certificate_key /etc/nginx/ssl/live/your-domain.com/privkey.pem; -# -# location ~ /.well-known/acme-challenge { -# allow all; -# root /var/www/certbot; -# } -# -# sendfile on; -# tcp_nopush on; -# tcp_nodelay on; -# keepalive_timeout 65; -# types_hash_max_size 2048; -# #include /etc/nginx/mime.types; -# #default_type application/octet-stream; -# -# gzip on; -# gzip_disable "msie6"; -# -# proxy_read_timeout 1800s; -# chunked_transfer_encoding on; -# -# # store responses to anonymous users for up to 1 minute -# proxy_cache bookwyrm_cache; -# proxy_cache_valid any 1m; -# add_header X-Cache-Status $upstream_cache_status; -# -# # ignore the set cookie header when deciding to -# # store a response in the cache -# proxy_ignore_headers Cache-Control Set-Cookie Expires; -# -# # PUT requests always bypass the cache -# # logged in sessions also do not populate the cache -# # to avoid serving personal data to anonymous users -# proxy_cache_methods GET HEAD; -# proxy_no_cache $cookie_sessionid; -# proxy_cache_bypass $cookie_sessionid; -# -# # tell the web container the address of the outside client -# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; -# proxy_set_header Host $host; -# proxy_redirect off; -# -# location ~ ^/(login[^-/]|password-reset|resend-link|2fa-check) { -# limit_req zone=loginlimit; -# proxy_pass http://web; -# } -# -# # do not log periodic polling requests from logged in users -# location /api/updates/ { -# access_log off; -# proxy_pass http://web; -# } -# -# location / { -# proxy_pass http://web; -# } -# -# # directly serve static files from the -# # bookwyrm filesystem using sendfile. -# # make the logs quieter by not reporting these requests -# location /static/ { -# root /app; -# try_files $uri =404; -# add_header X-Cache-Status STATIC; -# access_log off; -# } -# -# # same with image files not in static folder -# location /images/ { -# location ~ \.(bmp|ico|jpg|jpeg|png|svg|tif|tiff|webp)$ { -# root /app; -# try_files $uri =404; -# add_header X-Cache-Status STATIC; -# access_log off; -# } -# # block access to any non-image files from images -# return 403; -# } -# -# # monitor the celery queues with flower, no caching enabled -# location /flower/ { -# proxy_pass http://flower:8888; -# proxy_cache_bypass 1; -# } -# } - -# Reverse-Proxy server -# server { -# listen [::]:8001; -# listen 8001; - -# server_name your-domain.com www.your-domain.com; - -# location / { -# proxy_pass http://web; -# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; -# proxy_set_header Host $host; -# proxy_redirect off; -# } - -# location /images/ { -# alias /app/images/; -# } - -# location /static/ { -# alias /app/static/; -# } -# } diff --git a/nginx/reverse_proxy.conf b/nginx/reverse_proxy.conf new file mode 100644 index 0000000000..57a1016213 --- /dev/null +++ b/nginx/reverse_proxy.conf @@ -0,0 +1,49 @@ +include /etc/nginx/conf.d/server_config; + +upstream web { + server web:8000; +} +upstream flower { + server flower:8888; +} + +server { + access_log /var/log/nginx/access.log cache_log; + + listen 80; + include /etc/nginx/conf.d/server_name; + + http2 on; + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + #include /etc/nginx/mime.types; + #default_type application/octet-stream; + + gzip on; + gzip_disable "msie6"; + + proxy_read_timeout 1800s; + chunked_transfer_encoding on; + + # store responses to anonymous users for up to 1 minute + proxy_cache bookwyrm_cache; + proxy_cache_valid any 1m; + add_header X-Cache-Status $upstream_cache_status; + + # ignore the set cookie header when deciding to + # store a response in the cache + proxy_ignore_headers Cache-Control Set-Cookie Expires; + + # PUT requests always bypass the cache + # logged in sessions also do not populate the cache + # to avoid serving personal data to anonymous users + proxy_cache_methods GET HEAD; + proxy_no_cache $cookie_sessionid; + proxy_cache_bypass $cookie_sessionid; + + include /etc/nginx/conf.d/locations; +} diff --git a/nginx/server_config b/nginx/server_config index 8afab66a5c..443d5529d9 100644 --- a/nginx/server_config +++ b/nginx/server_config @@ -1,4 +1,4 @@ -client_max_body_size 10m; +client_max_body_size ${MAX_UPLOAD_MiB}m; limit_req_zone $binary_remote_addr zone=loginlimit:10m rate=1r/s; # include the cache status in the log message @@ -20,3 +20,7 @@ proxy_cache_path # since activitypub endpoints have both HTML and JSON # on the same URI. proxy_cache_key $scheme$proxy_host$uri$is_args$args$http_accept; +# only let one request to populate cache, see https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_lock +proxy_cache_lock on; +proxy_cache_lock_age 10s; +proxy_cache_lock_timeout 10s; diff --git a/nginx/server_name b/nginx/server_name new file mode 100644 index 0000000000..6b6da37399 --- /dev/null +++ b/nginx/server_name @@ -0,0 +1 @@ +server_name ${DOMAIN}; diff --git a/nginx/ssl_bootstrap b/nginx/ssl_bootstrap new file mode 100644 index 0000000000..c94ca83878 --- /dev/null +++ b/nginx/ssl_bootstrap @@ -0,0 +1,11 @@ +server { + listen [::]:80; + listen 80; + + include /etc/nginx/conf.d/server_name; + + location ~ /.well-known/acme-challenge { + allow all; + root /var/www/certbot; + } +} diff --git a/pytest.ini b/pytest.ini index b963fb316a..1e6b691dc1 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,6 +2,7 @@ DJANGO_SETTINGS_MODULE = bookwyrm.settings python_files = tests.py test_*.py *_tests.py addopts = --cov=bookwyrm --cov-config=.coveragerc +testpaths = bookwyrm/tests markers = integration: marks tests as requiring external resources (deselect with '-m "not integration"') @@ -9,17 +10,13 @@ env = LANGUAGE_CODE = en-US SECRET_KEY = beepbeep DEBUG = false - USE_HTTPS = true DOMAIN = your.domain.here PORT = 4242 ALLOWED_HOSTS = your.domain.here BOOKWYRM_DATABASE_BACKEND = postgres MEDIA_ROOT = images/ - CELERY_BROKER = - REDIS_BROKER_PORT = 6379 - REDIS_BROKER_PASSWORD = beep - REDIS_ACTIVITY_PORT = 6379 - REDIS_ACTIVITY_PASSWORD = beep + CELERY_BROKER_URL = memory:// + CELERY_RESULT_BACKEND = cache+memory:// USE_DUMMY_CACHE = true FLOWER_PORT = 8888 EMAIL_HOST = smtp.mailgun.org diff --git a/requirements.txt b/requirements.txt index 7303a17161..ef5e4bd0b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,26 +1,23 @@ -aiohttp==3.9.4 +aiohttp==3.12.14 bleach==6.1.0 boto3==1.34.74 bw-file-resubmit==0.6.0rc2 celery==5.3.6 colorthief==0.2.1 -Django==4.2.11 -django-celery-beat==2.6.0 +Django==5.2.3 +django-celery-beat==2.8.1 django-compressor==4.4 django-csp==3.8 django-imagekit==5.0.0 django-model-utils==4.4.0 django-oauth-toolkit==2.3.0 django-pgtrigger==4.11.0 -django-sass-processor==1.4 +django-sass-processor==1.4.1 django-storages==1.14.2 django-storages[azure] environs==11.0.0 flower==2.0.1 -gunicorn==20.0.4 -packaging==21.3 -protobuf==3.20.* -pytz>=2022.7 +gunicorn==23.0.0 hiredis==2.3.2 libsass==0.23.0 Markdown==3.6 @@ -28,21 +25,46 @@ opentelemetry-api==1.24.0 opentelemetry-exporter-otlp-proto-grpc==1.24.0 opentelemetry-instrumentation-celery==0.45b0 opentelemetry-instrumentation-django==0.45b0 -opentelemetry-instrumentation-psycopg2==0.45b0 +opentelemetry-instrumentation-psycopg==0.45b0 opentelemetry-sdk==1.24.0 -Pillow==10.3.0 +Pillow==11.3.0 pilkit>=3.0 # dependency of django-imagekit, 2.0 is incompatible with Pillow>=10 -psycopg2==2.9.9 +psycopg[binary]==3.2.9 pycryptodome==3.20.0 pyotp==2.9.0 python-dateutil==2.9.0.post0 +pytz>=2022.7 qrcode==7.4.2 redis==5.0.3 -requests==2.32.0 +requests==2.32.4 responses==0.25.0 s3-tar==0.1.13 +sqlparse==0.5.1 +ua-parser[regex]==1.0.1 # Indirect dependencies with version constraints for security fixes grpcio>=1.57.0 -setuptools>=65.5.1 +jwcrypto>=1.5.6 +setuptools>=70.0.0 tornado>=6.3.3 +urllib3>=2.2.2 +zipp>=3.19.1 + +# Dev +black==22.* +celery-types==0.22.0 +django-stubs[compatible-mypy]==4.2.7 +mypy==1.7.1 +pylint==3.2.6 +pytest==8.1.1 +pytest-cov==5.0.0 +pytest-django==4.8.0 +pytest-env==1.1.3 +pytest-xdist==3.5.0 +pytidylib==0.3.2 +types-bleach==6.1.0.20240331 +types-dataclasses==0.6.6 +types-Markdown==3.6.0.20240316 +types-Pillow==10.2.0.20240331 +types-python-dateutil==2.9.0.20240316 +types-requests==2.31.0.20240311 \ No newline at end of file